実際、私はたくさんの画像を持っていて、それらの画像をカスタムアレイアダプターに渡してリストビューに表示しています。リストビューで画像のすばらしいプレゼンテーションを取得しています。しかし、私が欲しいのは、一度に1つの画像を全画面表示でリストに表示することです。(100%)フルスクリーンアクティビティで1行を表示したいことを意味します。私はそのために2日を無駄にしましたが、それでも解決策は得られません。
相対レイアウト(id = subparent)でandroid:layout_height = "wrap_content"を指定すると、必要なものではなくオーバーラップします。android:layout_height = "430dp"を指定すると、必要なもののように見えます。しかし、どのデバイスで実行されるのかわからないため、それはできません。
私のXMLファイルは以下のとおりです。
<?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"
>
<RelativeLayout
android:id="@+id/subparent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/img2" />
<FrameLayout
android:id="@+id/flbotom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bottom_nav"
android:layout_alignParentBottom="true">
</FrameLayout>
</RelativeLayout>
</RelativeLayout>