谁知
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/yj"
android:orientation="horizontal"
android:gravity="center"
>
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:hint="搜索" />
</LinearLayout>
</LinearLayout>
在drawable里新建一个xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
设置边框
<stroke
android:color="#000" android:width="3dp"
/>
设置圆角度数
<corners
android:bottomLeftRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"
android:bottomRightRadius="20dp"
></corners>
设置内容与边框距离
<padding
android:bottom="10dp"
android:right="50dp"
android:left="10dp"
android:top="10dp"
></padding>
</shape>