gpt4 book ai didi

java - 样式文件中的属性对 View 没有影响

转载 作者:太空宇宙 更新时间:2023-11-04 13:53:48 25 4
gpt4 key购买 nike

我在 Android 应用程序中使用了一些样式文件,例如:

<style name="message">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#000000</item>
<item name="android:gravity">center_vertical</item>
<item name="android:layout_weight">1</item>
</style>

然后我通过以下方式使用这些样式创建一些组件:

TextView tv = new TextView(new ContextThemeWrapper(this, R.style.message));

我的问题是我注意到一些属性对我的组件没有影响,在这种情况下,layout_weight 不起作用,我必须在代码中指定它,如下所示:

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(0, LayoutParams.WRAP_CONTENT);
params.weight = 1;
tv.setLayoutParams(params);

如果您有任何想法,请告诉我。

谢谢。

最佳答案

问题在于 android:layout_weight 仅适用于您所经历的某些 LayoutParam

作为 Android 上样式的一般最佳实践,建议不要在样式中包含布局特定属性,因为您的样式 View 可以重复使用并位于不同的布局中。

关于java - 样式文件中的属性对 View 没有影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30034138/

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