このボタンがあります
<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>
希望どおりに背景を白くしますが、何らかの理由でボタンの高さが縮小され、見苦しくなります。
なぜそれが起こるのか、そしてこの副作用を止める方法はありますか?
ありがとう!