ScrollViewの上にあるこの種のボトムシートが必要です。
スクロール ビューの画像は、一番下のシートの後ろにある必要があります。一番下のシートは、[続行] ボタンをクリックするまで常に画面に表示されている必要があります。どんな助けでも大歓迎です。ありがとう !!
ScrollViewの上にあるこの種のボトムシートが必要です。
スクロール ビューの画像は、一番下のシートの後ろにある必要があります。一番下のシートは、[続行] ボタンをクリックするまで常に画面に表示されている必要があります。どんな助けでも大歓迎です。ありがとう !!
コードを見てみましょう
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:android_width="match_parent"
android:android_height="0dp"
android:layout_weight="4">
<ScrollView
android:android_width="match_parent"
android:android_height="0dp">
<!-- Put your inner grid layout here -->
</ScrollView>
<!-- put your bottom panel layout here -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Button
android:text="Proceed"
android:background="@drawable/yourSelectorXml"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>