Android开发:如何让EditText变得简单,所以它只是一个白色方块?

前端之家收集整理的这篇文章主要介绍了Android开发:如何让EditText变得简单,所以它只是一个白色方块?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
正如标题所说,我看过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" />

这是结果:

原文链接:https://www.f2er.com/android/314313.html

猜你在找的Android相关文章