良い一日!!!
特にアンドロイドの横向きのレイアウトに問題があります。
向きを横向きに変更しようとすると、ImageView が固定位置にあり、リストビューにスクロールバーしか表示されないようです... ImageView もスクロールできるようにレイアウトしたいだけです。リスト項目をはっきりと見ることができます。
ここに私のレイアウトxmlがあります
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/banner" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/imageView1"
android:drawSelectorOnTop="true" />
</RelativeLayout>