I'm working on a book app which is connected to a web admin.
I have added information about an author using paragraph and bullets in the web admin and it displays well but on the app, the paragraphs and bullets do not display and the text is all together.
Below is the Activity
public String getAuthorDescription() {
return authorDescription;
}
public ArtistHeaderObject setAuthorDescription(String authorDescription) {
this.authorDescription = authorDescription;
return this;
}
Below is the Layout
<com.remmy.wisdomnuggets.TextviewUtil.UbuntuMediumTextview
android:id="@+id/txt_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:layout_marginEnd="10dp"
android:layout_marginTop="10dp"
android:text="Peter Deuvergny"
android:textDirection="locale"
android:textColor="?attr/colorTagline"
android:textSize="12sp" />
Please, find attached a screenshot
` and `
- `?
– Dec 25 '19 at 15:07