xml でこのようなものを作成する必要がありますが、子 horizontalScrollView を持つ scrollView の内部オブジェクトを中央に配置することはできません。
コード例は次のとおりです。
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="5"
android:fillViewport="true" >
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
android:id="@+id/matrix_table"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<!-- auto generated rows -->
</TableLayout>
</RelativeLayout>
</HorizontalScrollView>
</ScrollView>
そしてここに予期しない結果があります
ありがとう!