Вы можете использовать следующий xml с несколькими настройками, если это необходимо,
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:id="@+id/dp1"... />
<TextView android:id="@+id/dp2"... />
<TextView android:id="@+id/dp3"... />
</HorizontalScrollView>
А теперь в своем коде Java вы можете получить к ним доступ как
TextView textV1 = (TextView)findViewById(R.id.dp1);
TextView textV2 = (TextView)findViewById(R.id.dp2);
TextView textV3 = (TextView)findViewById(R.id.dp3);
textV1.setText(text1);
textV2.setText(text2);
textV3.setText(text3);
, если хотитеВы можете использовать вертикальные полосы прокрутки как,
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
android:layout_height="set the height here" >
</ScrollView>