样式按钮不允许我更改 android:margin_layout



这是我的按钮样式:

<style name="StandardButton" parent="@android:style/Widget.Button">
    <item name="android:background">@drawable/button_mib_standard</item>
    <item name="android:textColor">@drawable/button_text</item>
    <item name="android:padding">16dip</item>
    <item name="android:textSize">16dip</item>
</style>

为什么日食列表不在这里android:margin_layout

应该是android:layout_margin,即使ADT Plugin没有自动为您完成此操作,也可能只是ADT Plugin中的一个错误,它应该可以工作。

没有列出,因为它是 layoutParams 的一个属性,取决于父视图类型。因此,它没有列出,因为可能没有为放置视图的布局定义"android:layout_margin"。

顺便说一句,我认为如果您在样式中定义它,只要父级使用该参数(linearLayout,relativeLayout ecc.),就可以毫无问题地工作。

PS. 为我的英语^^而苦恼

相关内容

  • 没有找到相关文章

最新更新