Transcript - Android
On Android, you can use a TextView
to display written text. Don't forget to put it in a ScrollView
, to make the text scrollable.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Appt transcript" />
</ScrollView>