私はxmlに次のものを持っています。相対レイアウトで使用されます。
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv1"/>
<TextView
android:id="@+id/tv3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv2" />
コードでは、2 番目のテキストビュー (tv2) を削除すると、tv3 を tv1 の下に再配置したいと考えています。xml でこれを行う方法を見つけることができなかったので、プログラムで実行したいと考えています。これどうやってするの?どうもありがとう!