ボタンがあります。私がボタンを押すと、テキストを太字にする必要があります。だから太字のスタイルを書きました&普通。私は、それはどのように行います...私はあまりにも透明として背景を行う必要があり、このボタンのための私のレイアウトでは透明なボタンの背景
<?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>
:
<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がありますか?私のレイアウトコードは:
<Button android:id="@+id/Btn" android:background="@drawable/button_states" />
私のスタイルで透明な背景をどうやって入れますか?
... – QED
チェックアウト[ここで、この答え](http://stackoverflow.com/questions/12856661/how-to-make-button-transparent -in-my-app-yet-visible#answer-12856901)境界線のある透明なボタンを作成する –
「TextViewを使用してonClickでそのアクションを呼び出すのはなぜですか? –