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のように見えるようにすることです。ただし、フォーカス イベントがトリガーされます。