I'm working on a Xamarin Android App using axml views. One of the views requires that the textview on one view be configurable from the server. For example setting the font, being able to use bullet points and so on. Any recommendations for packages for ideas on how to accomplish this? Below is the axml :
<TextView
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="fill_parent"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:textColor="@android:color/black"
android:layout_height="fill_parent"
android:layout_gravity="left"
android:id="@+id/ParagraphTextView" />
Just looking for idea's on how to make this possible.