Fixed
Status Update
Comments
ac...@googlemail.com <ac...@googlemail.com> #2
We use build flavours heavily with a lot of common code. The refactoring support in AS is really good but it continually catches us out when it doesn't work across all flavours in a project. It's a big gap for serious product development.
ar...@google.com <ar...@google.com>
ar...@google.com <ar...@google.com> #3
We at my company need this same feature. We have a lot of white labels and need refactor the same class across flavours. :(
to...@gmail.com <to...@gmail.com> #5
+1, I need this very badly
Description
E.g. these get linkified:
i@google.com
itsweird@google.com
This one doesn't:
it@google.com
- Steps to reproduce the problem (including sample code if appropriate).
<TextView
android:text="it@google.com"
android:autoLink="email"
/>
<TextView
android:text="itsweird@google.com"
android:autoLink="email"
/>
- What happened.
The first TextView with content it@google.com is not clickable, that is it didn't get linkified.
- What you think the correct behavior should be.
The first TextView with content it@google.com should get linkified, that is it should be clickable and open email client on click like it's working for the second TextView with content itsweird@google.com.
compileSdkVersion 26
buildToolsVersion '26.0.0'
compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support:design:26.0.0'
compile 'com.android.support:support-v4:26.0.0'