XML レイアウトに配置した VideoView の幅/高さが固定されているという奇妙な状況に直面していますが、2.2 の画面解像度 (460*800) を実行している Android タブレットで同じように実行すると、ビデオは常にフルスクリーンになり、同じ XML の他のビューがビデオに重なっています。
ビデオを全画面表示にしたくありません。幅と高さを固定したいのです。
以下は 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/imgRight"
android:layout_width="267px"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" />
<ImageView
android:id="@+id/imgBottom"
android:layout_width="533px"
android:layout_height="153px"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/imgRight" />
<VideoView
android:id="@+id/videoView"
android:layout_width="533px"
android:layout_height="307px"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
/>
</RelativeLayout>