ExpandableTextView
ExpandableTextView copied to clipboard
replaced TextView with HtmlTextView, collapse not working
hi i just replaced the TextView in the lib with this HtmlTextView which extends TextView itself. expanding works fine but collapsig wont work. where is the problem? thanks in advance
String strHtml = "<b>"content with html</b>"
Spanned spanned = Html.fromHtml(strHtml );
// sample code snippet to set the text content on the ExpandableTextView ExpandableTextView expTv1 = (ExpandableTextView) view.findViewById(R.id.expand_text_view) .findViewById(R.id.expand_text_view);
// IMPORTANT - call setText on the ExpandableTextView to set the text content to display expTv1.setText(Html.fromHtml(String.valueOf(spanned)));
Hope to help you. @