Android 带边框、图像和提示的编辑框

Android Editbox with Border, Image and Hint

我是 android 的新手。我想用 as

设计登录界面

如果有人能帮我创建这种类型的编辑框,它带有白色边框和位于该边框左侧的图像以及提示文本。

提前致谢。

试试这个来创建带边框的编辑文本

创建 borderedEdittext.xml 并放入 drawable

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

    <!-- Background Color -->
    <solid android:color="#ffffff" />

    <!-- Border Color -->
    <stroke android:width="1dp" android:color="#ff9900" />

    <!-- Round Corners -->
    <corners android:radius="5dp" />

</shape>

图像和提示使用这个

<EditText
            android:drawableLeft="@drawable/profilePic"
            android:hint="Enter Name"
            android:background="@drawable/borderedEdittext"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />