gpt4 book ai didi

android - 如何在中心添加图标提示Edittext

转载 作者:行者123 更新时间:2023-12-05 00:21:33 26 4
gpt4 key购买 nike

如何在中心添加图标提示edittext

我不知道设置

并且在 xml 文件中没有 android:drawbleCenter

如何创建它

感谢您的帮助 ;)

enter image description here

最佳答案

不幸的是你不能设置可绘制 EditText 的中心像这样,或者,您可以使用包含您的 的背景图片提示+图片无论你在里面展示什么,

试试下面的例子。

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="@android:drawable/editbox_background"
android:gravity="center">

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:drawableLeft="@android:drawable/ic_menu_search"
android:gravity="center"
android:hint="Search" />
</RelativeLayout>

您可以使用上面的 XML 代码实现这种类型的 View

enter image description here

关于android - 如何在中心添加图标提示Edittext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45751462/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com