自动联想和补全的textview


title: 自动联想和补全的textview
date: 2016-11-28 10:33:27
tags: tips


  • 自动联想和补全的textview在需求中还是很常见的,首先在布局中

    
    

那些什么颜色、背景的引用什么的随意更换好了,这是我的

自动联想和补全的textview_第1张图片
  • java代码中

    AutoCompleteTextView etPhone = findViewById(R.id.et_phone);
    etPhone.setThreshold(1); //这个是设置输入一个字符就开始联想,默认是从第二个字符开始的
    //        etPhone.setAdapter(new ArrayAdapter<>(this,android.R.layout.simple_dropdown_item_1line,phoneList));   //这个是默认的下拉菜单
    
    //要想自己设置下拉的布局,可以自己设置,但要注意一点,详见下面的布局;phoneList可以从网络、sp、数据库等获取
    etPhone.setAdapter(new ArrayAdapter<>(this,R.layout.tv_white_bg,phoneList)); 
    
    
    
        android:dropDownAnchor="@id/btn_next"    
        
        android:background="@color/white"
        android:textColor="@color/addclock_right_text"
        android:textSize="18sp"
        android:layout_width="match_parent"
        android:layout_height="43dp"/>
    

你可能感兴趣的:(自动联想和补全的textview)