1
状態に基づいた背景画像(この画像は9パッチではありません)とテキストを含むXMLレイアウト(可能な場合)で「ボタン」を作成します。どのコンポーネントを使用しますか?画像の背景とテキストとステートフル機能を備えたAndroidボタン
マイbutton_states.xml
は、次のようになります。
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/my_pressed" />
<item android:drawable="@drawable/my_normal" />
</selector>
my_pressed
とmy_normal
はNON 9 - パッチを適用した画像です。
今では、背景画像なしでレンダリングされ、私は通常のボタンを使用する場合
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_states"
android:text="@string/my_text" />
ボタン。
テキストとステートフルな「静的」背景を持つ「ボタン」の操作方法は?
Thxを
よろしく
Thxを...私は...それは可能ですみますセレクタでsetBackgroundDrawable()を使用するには?はいの場合、どのように? – zmeda