我怎样才能像这样编辑文本形状。
我的意思是右圆角和完全相同的形状。据我了解,9 补丁对我没有帮助。
您必须为您的EditText
. 对于其他布局,您必须创建如下所示的布局。它不是确切的 xml,而是向您展示了这个想法。
<RelativeLayout layout_width="match_parent" layout_height="50dp">
<EditText layout_width="wrap_content" layout_height="wrap_content"
android:background="@drawable/editTextBackground" layout_alignParentLeft="true" layout_marginLeft="10dp">
<ImageView layout_width="wrap_content" layout_height="wrap_content"
centerVertical="true" marginLeft="15dp"
android:background="@drawable/smily" />
<ImageView layout_width="wrap_content" layout_height="wrap_content"
centerVertical="true"
alignRight="@id/editTExt"
android:background="@drawable/camera" />
<ImageView layout_width="wrap_content" layout_height="wrap_content"
centerVertical="true" marginLeft="15dp"
alignParentRight="true"
android:background="@drawable/mic" />
</RelativeLayout>
希望这能给你这个想法。