-
UPDATE ---
The thread has been renamed. On Android, we use stub Android jars to compile an app, and those stubs only contain method signatures (their bodies all send the "Stub !" exception), and no f…
-
When I try to update a custom view on a Tab (Tab#setCustomView) it does not only set the custom view but it adds it !
Of course I could only update my view, but as it is a Spannable, I can't do that a…
-
I'm doing
``` JAVA
textView.setText(Html.fromHtml("Some bold text with other text"));
```
in code, and the assertion
``` JAVA
assertThat(textView).hasText("Some bold text with other text");
```
f…
-
The CapitalizingTextView convert a CharSequence to a String in the setTextCompat method.
This conversion prevents us from using a Spannable in a tab's title.
A typical use case is when you want to ad…
-
It is possible to change the String getTitle() to CharSequence getTitle() and then change how the text is painted? It seems that the mPaint color variable when drawing the text to the canvas is the on…