0

このコードをチェックしてください

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fadeScrollbars="true"
    android:scrollbarStyle="insideInset" >

    <TextView
        android:id="@+id/txt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:autoLink="all"
        android:paddingLeft="3dp"
        android:paddingRight="3dp"
        android:textIsSelectable="true" />
</ScrollView>

<Button
    android:id="@+id/nextbtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:onClick="nextButton"
    android:text="@string/next" />

<Button
    android:id="@+id/backbtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:onClick="prevButton"
    android:text="@string/back" />

私が得ている結果は、スクロールビューとテキストが表示されている間、左下と左下のボタンがテキスト/スクロールビューの上にあるということです。私はlinearlayoutを使用してみましたが、運がありません。助けてください。

4

1 に答える 1

1

android:layout_above="@+id/nextbtn"ScrollViewに追加して、次のことを試してください。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fadeScrollbars="true"
        android:scrollbarStyle="insideInset"
        android:layout_above="@+id/nextbtn" >

        <TextView
            android:id="@+id/txt"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:autoLink="all"
            android:paddingLeft="3dp"
            android:paddingRight="3dp"
            android:textIsSelectable="true" />
    </ScrollView>

    <Button
        android:id="@id/nextbtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:onClick="nextButton"
        android:text="next" />

    <Button
        android:id="@+id/backbtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:onClick="prevButton"
        android:text="back" />

</RelativeLayout>

編集: 残念ながら、Android は画面を ScrollView で埋め、ボタンを画面外に配置するため、Justin V. の回答は機能しません。

于 2013-02-20T20:42:46.090 に答える