gpt4 book ai didi

android - 使用样式设置 layout_width、layout_height

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:56:33 25 4
gpt4 key购买 nike

我使用样式文件为相同的布局设置了独特的样式,

风格:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<!-- User form layout style -->
<style name="UserFormLayoutRow">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:orientation">horizontal</item>
<item name="android:paddingBottom">@dimen/padding_small</item>
</style>
</resources >

//布局文件中

 <LinearLayout
style="@style/UserFormLayoutRow" >
//contents
</LinearLayout>

错误:(设计时)

enter image description here

运行时错误:

06-13 05:58:14.506: E/AndroidRuntime(936): Caused by: java.lang.RuntimeException: Binary XML file line #105: 您必须提供 layout_width 属性。

我哪里错了?时间差

最佳答案

编辑 我检查了您的情况。看来 layout_width 和 layout_height 必须在布局下定义。如果您不想在 xml 中提及它们,请在 style.xml 中提及并将其用于您的 View 。

关于android - 使用样式设置 layout_width、layout_height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17080504/

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