Android 如何制作带扫码标志的圆角搜索框
时间: 2023-05-17 17:03:55 浏览: 187
Android圆角图标的实现
4星 · 用户满意度95%
您可以使用 Android 的 Shape Drawable 和 Material Design 组件来制作带扫码标志的圆角搜索框。您可以创建一个圆角矩形的 Shape Drawable,并在其中添加一个扫码图标。然后,您可以将此 Shape Drawable 与 Material Design 的搜索框组件结合使用,以创建带扫码标志的圆角搜索框。以下是一个示例代码:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="20dp" />
<solid android:color="@android:color/white" />
<stroke
android:width="1dp"
android:color="@android:color/darker_gray" />
</shape>
```
```xml
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Search">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableStart="@drawable/ic_scan"
android:drawablePadding="8dp"
android:background="@drawable/rounded_corner_search_box" />
</com.google.android.material.textfield.TextInputLayout>
```
请注意,上述示例代码仅用于演示目的,您需要根据您的需求进行修改。
阅读全文