0

Touched/Focused 時に機能するシンプルな TextView があります。

次のようにフォーカス可能に設定しました。

<TextView
  android:id="@+id/post_interests"
  style="@style/InterestsEditText"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:hint="Select Interest(s)"
  android:focusable="true"
  android:focusableInTouchMode="true">
</TextView>

それにこのスタイルを追加しました:

<style parent="@android:style/Widget.TextView" name="InterestsEditText">
    <item name="android:background">@android:drawable/edit_text</item>
    <item name="android:textSize">18dp</item>       
</style>

今必要なのは、フォーカスを取得しても現在の外観が変わらないため、フォーカスを取得したときにEdit Textのように見えるようにすることです。ただし、フォーカス イベントがトリガーされます。

4

1 に答える 1

0

EditText を使用して、目的の外観を得るために背景を指定してみませんか? 使用しようとしている TextView の特定の機能はありますか?

于 2013-04-22T04:18:19.787 に答える