ボタンがあります。ボタンを押すと、テキストを太字にする必要があります。だから私は太字と普通のスタイルを書いた。
<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>
今私はbutton_states.xmlを次のようにしています:
<?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>
このボタンのレイアウトでは、背景も透明にする必要があります...どうすればよいですか?私のレイアウトコードは:
<Button android:id="@+id/Btn" android:background="@drawable/button_states" />
スタイルに背景を透明として含めるにはどうすればよいですか?