You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get empty TextViews if no link is found in the textView. I'm working on a fix.
Investigation:
In LinkableTextView the text should only be set if the Spannable is not null
public LinkableTextView build() {
this.mLinkModifier.build();
//Check if spannable is not null
this.setText(this.mLinkModifier.getSpannable());
return this;
}
The text was updated successfully, but these errors were encountered:
I get empty TextViews if no link is found in the textView. I'm working on a fix.
Investigation:
In LinkableTextView the text should only be set if the Spannable is not null
public LinkableTextView build() {
this.mLinkModifier.build();
//Check if spannable is not null
this.setText(this.mLinkModifier.getSpannable());
return this;
}
The text was updated successfully, but these errors were encountered: