任何人都可以告诉我,如何在AndroidStudio中的editText中添加边框?
例如editText中的一个正方形。
答案 0 :(得分:2)
这很容易兄弟
第一步在目录drawable中创建 shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="@android:color/black"/>
</shape>
第二步在layout.xml中创建 editext ,并将背景与上面创建的形状放在一起
<EditText
android:id="@+id/edittext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape"/>
一切都是
答案 1 :(得分:1)
试试这个,
首先在drawable文件夹中创建一个XML文件(使用new drawable xml)并添加此行
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"/>
<solid android:color="#000000"/>
<stroke
android:color="#ffffff"
android:width="05dp"/>
<corners android:radius="20dp"/>
然后在您的edittext属性
中添加此行android:background="@drawable/(file_name)"
我不知道你的期望,也许它会帮助你