クリア ボタンを持つ EditText である複合コントロールを作成したいと考えています。主な機能は EditText 機能であるため、EditText のすべての属性を使用してレイアウト xml で宣言できるようにしたいと考えています。しかし、実際には EditText と ImageButton を含む LinearLayout になります。
また、コード内の EditText と同じように使用したいので、代わりにドロップできます。
これまでのところ、このレイアウトがあります:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@android:drawable/editbox_background" >
<EditText
android:id="@+id/editText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:background="#FFF" />
<ImageButton
android:id="@+id/clear"
android:src="@drawable/clear_text"
android:background="#FFF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" />
</LinearLayout>
しかし、私はどのように進むべきかわかりません。このレイアウトを使用するために LinearLayout にする必要がある場合、EditText を拡張するコントロールを定義するにはどうすればよいですか? または、onDraw() で x を手動で描画し、自分でクリックを処理する唯一のオプションですか?