Links in incoming message body in message center are not clickable, looks like android:autoLink="all" attribute on message_body TextView in apptentive_message_incoming.xml is not working .
<TextView android:id="@+id/apptentive_compound_message_body"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/Apptentive.TextAppearance.Body1"
android:textIsSelectable="true"
android:autoLink="all"
android:focusable="true"/>
Posible solution would be to add messageBodyView.setMovementMethod(LinkMovementMethod.getInstance()); in IncomingCompoundMessageHolder.
Please let me know if there is any other easy solution for this without waiting for next release . Thanks
Links in incoming message body in message center are not clickable, looks like
android:autoLink="all"attribute on message_body TextView inapptentive_message_incoming.xmlis not working .Posible solution would be to add
messageBodyView.setMovementMethod(LinkMovementMethod.getInstance());in IncomingCompoundMessageHolder.Please let me know if there is any other easy solution for this without waiting for next release . Thanks