gpt4 book ai didi

带有提示和图像的 Android 可点击 TextView 可启动搜索对话框并显示所选结果

转载 作者:行者123 更新时间:2023-11-30 04:44:18 24 4
gpt4 key购买 nike

我正在寻找一个示例来展示如何实现可点击的 TextView ,该 TextView 会启动 Android 默认搜索对话框并显示选定的结果行。

它应该与 Android 上 Google map 操作栏中的搜索字段具有相同的行为和设计(例如,左侧的放大镜图标,如果 TextView 为空,则显示“搜索”提示,单击会启动定义的搜索对话框通过可搜索的条目):

最佳答案

这是带有复合可绘制对象的自定义 EditText

public class SearchEditText extends EditText {

private boolean mMagnifyingGlassShown = true;
private Drawable mMagnifyingGlass;

public SearchEditText(Context context, AttributeSet attrs) {
super(context, attrs);
mMagnifyingGlass = getCompoundDrawables()[0];
}

/**
* Conditionally shows a magnifying glass icon on the left side of the text field
* when the text it empty.
*/
@Override
public boolean onPreDraw() {
boolean emptyText = TextUtils.isEmpty(getText());
if (mMagnifyingGlassShown != emptyText) {
mMagnifyingGlassShown = emptyText;
if (mMagnifyingGlassShown) {
setCompoundDrawables(mMagnifyingGlass, null, null, null);
} else {
setCompoundDrawables(null, null, null, null);
}
return false;
}
return super.onPreDraw();
}

和xml

<view
class="com.tr.search.SearchEditText"
android:id="@+id/search_src_text"
android:layout_height="wrap_content"
android:layout_width="0dip"
android:layout_weight="1.0"
android:singleLine="true"
android:ellipsize="end"
android:hint="@string/search_bar_hint"
android:drawableLeft="@drawable/magnifying_glass"
android:freezesText="true"
/>

结果 enter image description here

关于带有提示和图像的 Android 可点击 TextView 可启动搜索对话框并显示所选结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5348763/

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