1

ヘルプが必要, 次の画面を参照してください, (これは私の実際のホーム画面です) ここに画像の説明を入力

しかし、アプリケーションを実行すると、次のようになります (アプリケーションを実行すると画面が表示されます)。 ここに画像の説明を入力

ここでは、画面をドラッグ (スクロール) してフッター部分を表示する必要があります。私はこれを避けたいのですが、誰か助けてください。ありがとうございました。!

4

2 に答える 2

2

これがあなたを助けることを願っています。以下を使用

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


    <!-- header part -->
     <LinearLayout
     android:id="@+id/ll_header"
     android:layout_alignParentTop="true"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
            ...
        </LinearLayout>

    <!-- scroll view part -->
        <ScrollView 
         android:id="@+id/sv_container"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
      android:layout_above="@+id/ll_fooetr">

        </ScrollView>

        <!-- footer part -->
        <LinearLayout
     android:id="@+id/ll_footer"
     android:layout_alignParentBottom="true"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
            ...
        </LinearLayout>
    </RelativeLayout>
于 2013-07-11T09:29:02.063 に答える
0

私の提案は、あなたの活動にLinearLayoutorを使用し、その中で aを内側の部分 (スクロールする必要があります) に使用することです。RelativeLayoutScrollView

だから、おそらくこのようなもの

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

    <ScrollView 
        android:layout_height="wrap_content"
        android:layout_width="match_parent">
        <!-- all your scrollable stuff goes here -->
    </ScrollView>

    <!-- here's your footer -->
    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent">
        ...
    </LinearLayout>
</LinearLayout>

ScrollView に関するドキュメント

編集:RelativeLayout親の端に合わせて配置できるため、(メインのレイアウトとして)が最適 だと思います。

RelativeLayout に関するドキュメント

于 2013-07-11T08:40:10.590 に答える