0
誰可以幫我風格按鈕?我如何改變按鈕的風格,我沒有角度問題,我的意思是,爲什麼我有默認的按鈕樣式。 這是我的代碼,並顯示問題按鈕的風格Android
Button style="@style/gradient_button"
風格 - gradient_button
<style name="button_common">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:textColor">#ffffff</item>
<item name="android:textSize">14sp</item>
</style>
<style name="gradient_button" parent="@style/button_common">
<item name="android:background">@drawable/button_grad</item>
</style>
和文件button_grad
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_enabled="true"
android:state_pressed="false"
android:drawable="@drawable/b59" />
<item
android:state_enabled="true"
android:state_pressed="true"
android:drawable="@drawable/y59" />
<item
android:state_enabled="false"
android:drawable="@drawable/b59" />
</selector>
b59和y59這些是帶有9個補丁的圖像。
我試過了,但天使們仍然遇到了問題。你能看到圖1和圖2,我不知道。也許這是問題背景默認按鈕(材料設計) –
也許問題是關於您的圖像和約9補丁 – Carlo
哦,我想,你確定。謝謝你 –