如何创建这样的EditText?我尝试了很多次,但光标始终在圆角之外。
答案 0 :(得分:2)
首先,在项目的drawable文件夹中添加一个名为“ background.xml”的新drawable文件,并将其写入其中:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle">
<solid android:color="#f1f4f9" />
<stroke android:width="1dp" android:color="#f1f4f9" />
<corners
android:radius="24dp" />
</shape>
然后在activity_main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/background"
android:hint="Your full name"
android:padding="15dp"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
结果:
祝你好运!
答案 1 :(得分:0)
在edittext中使用左填充
android:leftpadding =“ 20dp”