最初の 2 つのフィールドは Android ICS の SMS アプリケーションで、3 番目のフィールドは私のものです。
私はこのようにしました:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/searchfield"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/newItem"/>
<ImageButton
android:id="@+id/newItem"
android:layout_height="40dip"
android:layout_width="40dip"
android:layout_alignParentTop="@+id/searchfield"
android:adjustViewBounds="true"
android:contentDescription="Add"
android:layout_alignParentRight="true"/>
</RelativeLayout>
画像は次のように設定されます。
Drawable img = getResources().getDrawable( R.drawable.light_send );
newItem.setBackgroundDrawable(img);
非常に悪い描画矢印が表示され、青い背景を下に作成するのに問題があります。何か不足していますか?