我有这个按钮
<Button
android:id="@+id/learn"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop ="5dp"
android:text="Hello StackOverflow"
style="@style/home_page_buttons"
/>
我试图给它这种风格
<style name="home_page_buttons">
<item name="android:layout_marginLeft">15dp</item>
<item name="android:layout_marginRight">15dp</item>
<item name="android:textColor">@color/light_best_blue</item>
<item name="android:textStyle">bold</item>
<item name="android:color">@color/white</item>
<item name="android:background">@color/white</item>
</style>
这一行:
<item name="android:background">@color/white</item>
使背景变成我想要的白色,但由于某种原因,它缩小了按钮的高度并使其变得难看。
知道为什么会发生这种情况以及如何阻止这种副作用吗?
谢谢!