こんにちは、LinearLayout 内で次のレイアウト構造を使用しています
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/tv1"
android:layout_height="wrap_content"
android:gravity="left"
android:paddingLeft="10dp"
android:textColor="#000" />
<TextView
android:id="@+id/tv2"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:gravity="right"
android:paddingRight="10dp"
android:textColor="#000" />
</TableRow>
</TableLayout>
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="320px"
android:layout_height="320px"
android:gravity="center" >
</RelativeLayout>
xml ファイルで 320px に設定するのではなく、相対的なレイアウトの幅と高さを Java ファイルから動的に設定したいのですが、それを行うことができません。縦向きモードのみに制限しているため、向きの変更は問題ではありません。match_parent を使用してフルスクリーンで相対的なレイアウトを設定することは可能ですが、画面に別のビューを配置する必要があるため、可能であるか、別の方法で実現する必要があります...