正如标题所说,我看过EditTexts,它们只是纯白色,没有光滑的边角或橙色的
android边框,当你突出显示它等.
就像在这个应用程序中看起来:
http://s1.appbrain.com/screen?id=-2631427781674403509&i=1
解决方法
您需要创建一个自定义背景9补丁图像,如此
one,并将其放入/ res / drawable目录.这是针对9补丁图像的
tutorial.然后,您需要使用android:background属性将图像作为EditText的背景应用.
这是一个示例布局xml:
<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/white_bg" android:text="Test" android:layout_marginBottom="5dip" /> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/white_bg" android:text="Currently focused" />
这是结果: