0

押されたときにリストビュー項目のように強調表示されるクリック可能なテキスト ボックスを作成しようとしています。使用したい独自の背景画像があるため、使用できません

android:background="?android:attr/selectableItemBackground"

テキストボックスに独自の背景画像を使用しているときにテキストボックスをクリックすると、青い「グロー」効果を実現する方法はありますか? 現在、私のテキストビューは次のようになっています。

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/title"
          style="@style/ListSeparatorTextViewStyle"
          android:paddingLeft="10dip"
          android:paddingRight="10dip"
          android:focusable="true"/>

アップデート:

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:background="?android:attr/selectableItemBackground"
          android:state_pressed="true" />

    <item android:drawable="@drawable/list_section_divider_holo_custom"></item>
</selector>
4

1 に答える 1