Tôi có một nút. Khi tôi nhấn nút, tôi phải làm cho văn bản đậm như bình thường. Vì vậy, tôi đã viết phong cách cho đậm và bình thường.
<style name="textbold" parent="@android:style/TextAppearance">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textStyle">bold</item>
</style>
<style name="textregular" parent="@android:style/TextAppearance">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textStyle">normal</item>
</style>
Bây giờ tôi có tệp button_states.xml là:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="true"
style="@style/textbold" />
<item android:state_focused="false" android:state_pressed="true"
style="@style/textregular" />
<item style="@style/textregular" />
</selector>
Trong cách bố trí của tôi cho nút này, tôi cũng phải làm cho nền trong suốt ... Tôi sẽ làm thế nào? Mã bố cục của tôi là:
<Button android:id="@+id/Btn" android:background="@drawable/button_states" />
Làm thế nào tôi sẽ bao gồm nền trong suốt trong phong cách của tôi?