私は LinearLayout を持っており、その中に別のレイアウトが含まれています。このようなもの
<LinearLayout
android:id="@+id/linear_layout"
android:layout_width="match_parent"
android:layout_height="20dp"
android:visibility="gone"
tools:visibility="visible">
<include
layout="@layout/new_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="4dp"
android:layout_marginLeft="4dp"
android:layout_marginStart="4dp"
android:layout_weight="1"/>
</LinearLayout>
今私がやりたいことは、含まれているレイアウト(new_layout)の「marginBottom」をプログラムで変更することです。どうやってやるの?
さまざまな LayoutParams を呼び出してマージンを変更しようとしましたが、それが正しいアプローチかどうかはわかりません。どんな助けでも大歓迎です。
ありがとう