Add MediumTextView to your layout XML
masterInclude the io.github.angebagui.mediumtextview.MediumTextView component in your XML layout. It is recommended to wrap it in a ScrollView since the content is intended to be scrollable.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<io.github.angebagui.mediumtextview.MediumTextView
android:id="@+id/medium_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/activity_horizontal_margin"
android:layout_marginBottom="@dimen/activity_vertical_margin"
/>
</ScrollView>