设置错误消息不完全可见?

时间:2014-09-23 09:56:28

标签: android

我正在使用片段类并在其中设置错误消息然后我生成错误像矩形类型但我想显示像圆形矩形的错误消息我该怎么办? 有关详细信息,请参阅this link

1 个答案:

答案 0 :(得分:0)

试试这个

if (editText.getText().toString().trim().equalsIgnoreCase(""))
  editText.setError("This field can not be blank", R.drawable.border);

它将在edittext上显示弹出错误消息

对于圆角,在drawable中创建此border.xml

 <?xml version="1.0" encoding="utf-8"?>
   <shape xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape="rectangle" >

    <corners android:radius="5dip" />

     <solid android:color="#ffffff" />

   <stroke
    android:width="1dp"
    android:color="@android:color/white" />

 </shape>