我经常不得不手动为我的按钮设置布局参数
<Button
android:id="@+id/signIn"
android:layout_above="@+id/forgotPassword"
android:text="@string/button_sign_in"
<!-- Repetitive part -->
android:layout_marginLeft="@dimen/button_margin_left"
android:layout_marginRight="@dimen/button_margin_right"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
我的样式.xml
<style name="myButton" parent="android:style/Widget.Button">
<item name="android:textColor">@color/button_textColor</item>
<item name="android:background">@drawable/button_background</item>
<item name="android:textSize">@dimen/button_textSize</item>
<item name="android:padding">@dimen/button_padding</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_marginLeft">@dimen/button_margin_left</item>
<item name="android:layout_marginRight">@dimen/button_margin_right</item>
</style>
但是最后三个值似乎没有影响!如果我不能在样式 xml 中设置它,我可以设置 eclipse 来更改它在使用图形布局时创建的默认值吗?