次の問題があります。GridViewのコンテンツがデバイスディスプレイに収まらず、スクロールが開始されると、gridviewの下のボタンは表示されません。ボタンがGridViewの下のRelativeLayoutに表示されない
<?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:paddingLeft="16dp"
android:paddingRight="16dp">
<GridView
android:id="@+id/generated_number_gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:columnWidth="90sp"
android:horizontalSpacing="10sp"
android:stretchMode="columnWidth"
android:verticalSpacing="10sp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/generated_number_gridview"
android:layout_centerHorizontal="true"
android:onClick="proceed"
android:text="@string/proceed"
android:textSize="25sp" />
</RelativeLayout>
は、あなたの助けのために非常に感謝し、次のようになります。
は、ここに私のコードです!
はい。できます。ありがとうございました ! –
@ Kostya-OniLこれを正解としてマークしてくださいありがとう:) –