-
I have created simple Epub image loader like this:
```
public class EpubImageHandler extends ImageHandler {
private Book book;
public EpubImageHandler(Book book) {
this.book = book;
…
-
Is there a way through which we can add expandable text in the library. For example a new tag can be set to define expanded and collapsed content inside a paragraph. Can you help in this thing?
Thank…
-
Hi,
I am trying to capture event for link ("a") so i have registered event handler for it with htmlspanner.
HtmlSpanner htmlSpanner = new HtmlSpanner();
data = htmlSpanner.fromHtml(sb.t…
-
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…
-
1. Performance in a chatview is quite poor. This could likely be improved by switching to a listview instead of the tableview, as then only the visible items need to be rendered.
2. Less object creat…
-
This widget shall indicate by text markings when a text has been changed/inserted/deleted(?) by a session taker. For the moment we shall dismiss the marking if the change has been reviewed (i.e. moved…