前两个字段是来自 android ICS 的 SMS 应用程序,第三个是我的。
我是这样做的:
<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);
我得到了一个非常糟糕的绘制箭头,并且在向下创建蓝色背景时遇到了问题。我错过了什么吗?