ヘルプが必要, 次の画面を参照してください, (これは私の実際のホーム画面です)
しかし、アプリケーションを実行すると、次のようになります (アプリケーションを実行すると画面が表示されます)。
ここでは、画面をドラッグ (スクロール) してフッター部分を表示する必要があります。私はこれを避けたいのですが、誰か助けてください。ありがとうございました。!
ヘルプが必要, 次の画面を参照してください, (これは私の実際のホーム画面です)
しかし、アプリケーションを実行すると、次のようになります (アプリケーションを実行すると画面が表示されます)。
ここでは、画面をドラッグ (スクロール) してフッター部分を表示する必要があります。私はこれを避けたいのですが、誰か助けてください。ありがとうございました。!
これがあなたを助けることを願っています。以下を使用
<?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>
私の提案は、あなたの活動にLinearLayout
orを使用し、その中で aを内側の部分 (スクロールする必要があります) に使用することです。RelativeLayout
ScrollView
だから、おそらくこのようなもの
<?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>
編集:RelativeLayout
親の端に合わせて配置できるため、(メインのレイアウトとして)が最適
だと思います。