百分比相对布局,如何以编程方式设置高度
2022-09-01 12:39:18
我正在使用来自Android百分比支持包的PertRelativeLayout。这就是我在布局中所拥有的。
<android.support.percent.PercentRelativeLayout
android:id="@+id/view_parent"
app:layout_heightPercent="68%" android:visibility="invisible"
android:layout_width="match_parent"
android:background="@color/mountain_meadow" android:layout_alignParentTop="true"
android:layout_height="wrap_content">
<View android:id="@+id/view_child" android:layout_width="match_parent" app:layout_heightPercent="30%"
android:layout_alignParentBottom="true"
/>
</android.support.percent.PercentRelativeLayout>
我想以编程方式更改 的高度。我如何使用或任何其他方式做到这一点。view_child
PercentRelativeLayout.LayoutParams