I am displaying a large block of text in a TextView within a ScrollView like such.
<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/date_text"
    android:id="@+id/scrollView">
    <TextView
        android:id="@+id/explenation_text"
        android:text="@string/explanation_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</ScrollView>
Would there be a way to have my text aligned to the right, therefore to have one block of text without varying line sizes?
 
    