一. 效果图

  在Google或者百度搜索的时候,在输入关键词都会出现自动搜索的提示内容,类似如下的效果,输入b 则出现包含b的相关词条

Android--自动搜索提示

 

 

二. 布局代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    
    <AutoCompleteTextView 
        android:id="@+id/autoText"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_marginTop="10dp"
        />

</LinearLayout>
AutoCompleteTextView布局代码

相关文章:

  • 2021-10-09
  • 2021-10-15
  • 2021-12-15
  • 2021-05-16
  • 2021-09-12
  • 2021-10-26
  • 2021-09-12
  • 2021-09-01
猜你喜欢
  • 2021-12-19
  • 2021-09-27
  • 2021-09-01
  • 2021-11-01
  • 2021-12-09
  • 2021-05-08
  • 2021-12-09
  • 2022-01-05
相关资源
相似解决方案