3

Androidで非常にシンプルなレイアウトを取得しようとしていますが、機能させることができません。私が欲しいのは、ヘッダー(includeXMLファイルによる)と、それに続くScrollView大きなテキストの本文を表示するためのa、および下部にある2つのボタンだけです。これらは常に表示されているはずです。

私はLinearLayoutsとRelativeLayoutsをいじりましたが、どういうわけか、それを動作させることができません。私が今まで持っているのはこれです:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">

    <include layout="@layout/header" />


    <RelativeLayout 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    <ScrollView
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:id="@+id/svDisclaimer"
        >
           <TextView 
               android:layout_width="fill_parent"
               android:layout_height="wrap_content" 
               android:id="@+id/tvDisclaimer">
           </TextView>
    </ScrollView>
         <LinearLayout      android:orientation="horizontal" 
              android:layout_width="fill_parent" 
              android:layout_height="wrap_content" 
              android:layout_below="@+id/svDisclaimer"
               >
      .. [ snip ] ..
        </LinearLayout>
        </RelativeLayout>
</LinearLayout>

(.. [snip] ..は私のボタンがある場所です)ヘッダーはそこにあり、スクロールビューがポップアップしますが、ボタンはどこにも表示されません。

4

3 に答える 3

4

ScrollViewの高さはfill_parent、ScrollViewの下にあるすべてのものを画面の下部から押し出すように設定されています。スクロールできないものは表示されません...代わりにこのパターンを試してください。

<ScrollView >
    <RelativeLayout >
        <TextView />
        <LinearLayout >
            <!-- [ snip ] -->
        </LinearLayout>
    </RelativeLayout>
</ScrollView>

おそらく、RelativeLayout位置タグも使用してLinearLayoutを削除できます。(android:below、、android:toRightOfなど)


私のコメントからこの構成を使用してみてください:

<ScrollView
    ...
    android:above="@+id/buttons" >

    ...
</ScrollView>
<LinearLayout
    android:id="@+id/buttons"
    android:layout_alignParentBottom="true"
    ... >

    ...
</LinearLayout>
于 2012-10-08T21:15:21.780 に答える
0

Like Sam said, setting the ScrollView's height to fill_parent pushes the buttons off the screen. There's a way to make it work using the layout tags for RelativeLayout, though. Try this:

<LinearLayout>
[snip]
    <RelativeLayout>
         <!-- Declare the buttons *before* the ScrollView, but use layout params to move
         them to the bottom of the screen -->
         <LinearLayout
            android:id="@+id/buttonParent"
            android:layout_alignParentBottom="true">
              [Buttons go here]
         </LinearLayout>
         <!-- The "android:layout_above" attribute forces the ScrollView to leave space for the buttons -->
         <ScrollView
           android:height="fill_parent"
           android:layout_above="@id/buttonParent" />
             [snip]
         </ScrollView>
    </RelativeLayout>
</LinearLayout>
于 2012-10-08T21:23:50.333 に答える
0

もう1つの方法は、画面上にとどまらなければならない上下の要素をフレームレイアウトに配置することです。http://android-er.blogspot.ca/2011/06/example-of-framelayout.html

于 2012-10-08T22:10:06.813 に答える