私は自分のxmlにスクロールビューを持っていましたが、スクロールビューは電話の横向きモードでのみ機能し、電話の縦向きモードでは機能しないはずです。これは可能であり、可能であれば、xmlファイルを使用するか、プログラムで実行する必要があります。コードが必要な場合私に聞いてください。ありがとう
これがxmlファイル(ポートレートモード)です:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollview1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#1e90ff"
tools:context=".HomeActivity"
android:scrollbars="none"
>
<LinearLayout
android:id="@+id/layout01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#a9a9a9"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/my_tauky_button_img" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/explore_button_img"
android:text="" />
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/create_tauky_button_img" />
<Button
android:id="@+id/button4"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/my_blauky_button_img" />
<Button
android:id="@+id/button5"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@drawable/profile_button_img" />
</LinearLayout>
</ScrollView>