gpt4 book ai didi

android - 以编程方式更改 ScrollView 权重

转载 作者:搜寻专家 更新时间:2023-11-01 07:55:23 28 4
gpt4 key购买 nike

我想改变 ScrollView 的权重,但找不到实现它的方法。

这是我的 XML:

<ScrollView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:id="@+id/firstScrollView">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
</LinearLayout>

**other layout..

</ScrollView>

从代码中只能设置scrollView的高度或者宽度,weight应该怎么写??

    ViewGroup.LayoutParams scrollParams = new ViewGroup.LayoutParams(width,height);
scrollView.setLayoutParams(scrollParams);

最佳答案

 LinearLayout.LayoutParams scrollParams = new LinearLayout.LayoutParams(width,height,2.0f);
scrollView.setLayoutParams(scrollParams);

构造函数中的最后一个选项是权重

关于android - 以编程方式更改 ScrollView 权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28481618/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com