0

これはアクティビティの私のxmlファイルです。回転の場合以外はうまく機能します。私のモバイルでは、AutoRotation が有効になっていると、画面も回転します。回転中、「Exit」という名前のボタンは表示されません。一番下までスクロールしようとしましたが、スクロールできません。

   <?xml version="1.0" encoding="utf-8"?>
<ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/scrollView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none" >

<AbsoluteLayout 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout 
    android:id="@+id/ll_buttons"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical|center_horizontal"
    android:layout_below="@+id/slogon"      
    android:layout_marginTop="50dip">
    <ImageView
        android:id="@+id/image1"
        android:layout_width="match_parent"
        android:layout_height="481dp"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:background="@drawable/ic_launcher" />
</LinearLayout>
<Button android:layout_height="wrap_content" android:textColor="#FF0000"     android:textStyle="bold" android:id="@+id/button2" android:layout_width="wrap_content" android:text="EXISTINGFARMER" android:layout_x="161dip" android:layout_y="157dip"></Button>
<Button android:layout_height="wrap_content" android:textColor="#FF0000" android:textStyle="bold" android:id="@+id/button1" android:layout_width="wrap_content" android:text="NEW FARMER" android:layout_x="34dip" android:layout_y="157dip"></Button>
<Button android:layout_height="wrap_content" android:textColor="#FF0000" android:textStyle="bold" android:id="@+id/btn_exit" android:layout_width="100dip" android:text="EXIT" android:layout_x="105dip" android:layout_y="233dip"></Button>
<TextView android:layout_height="wrap_content" android:textStyle="bold" android:textSize="40dip" android:layout_width="wrap_content" android:textColor="#FFEA00" android:id="@+id/heading" android:text="S.V.Sugar Mills" android:layout_x="29dip" android:layout_y="14dip"></TextView>

<TextView
    android:id="@+id/subheading"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="38dp"
    android:layout_y="97dp"
    android:text="The New and Old Farmer Details."
    android:textColor="#0000A0"
    android:textSize="15dip"
    android:textStyle="bold" />

</AbsoluteLayout>
</ScrollView>

間違いがわかりませんでした。回転中にスクロールする方法を知っている人がいます。助けてください。前もって感謝します

4

1 に答える 1

0

縦向きまたは横向きモードでのスクロールをサポートしたい場合は、まず、すべてのウィジェットをスクロールビューに配置する必要があります。

scrollview を使用してください。Scrollview は、直接の子を 1 つだけサポートします。したがって、スクロールビューの子として相対レイアウトまたは線形レイアウトを取得し、すべてのウィジェット コントロールをその子レイアウトに配置する必要があります。

スクロールビューのチュートリアルについては、こちらをご覧ください。

于 2013-03-02T06:55:12.853 に答える