0

ScrollViewの上にあるこの種のボトムシートが必要です。

ここに画像の説明を入力

スクロール ビューの画像は、一番下のシートの後ろにある必要があります。一番下のシートは、[続行] ボタンをクリックするまで常に画面に表示されている必要があります。どんな助けでも大歓迎です。ありがとう !!

4

2 に答える 2

-1

コードを見てみましょう

<?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>
于 2016-06-13T13:55:04.367 に答える