Android--输入自动提示AutoCompleteTextView_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android--输入自动提示AutoCompleteTextView

Android--输入自动提示AutoCompleteTextView

 2013/12/17 16:09:21  CN.programmer.Luxh  博客园  我要评论(0)
  • 摘要:布局文件:<TextViewandroid:id="@+id/title"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/title"/><AutoCompleteTextViewandroid:id="@+id/actv"android:layout_width="fill_parent"android
  • 标签:android view

布局文件:

  <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/title" />
    
    <AutoCompleteTextView 
        android:id="@+id/actv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/title"/>

 

Activity代码:

package cn.luxh.autocomplete;

import android.os.Bundle;
import android.app.Activity;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        AutoCompleteTextView actv = (AutoCompleteTextView) findViewById(R.id.actv);
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,getData());
        //设置适配器
        actv.setAdapter(adapter);
        //输入一个字符开始提示
        actv.setThreshold(1);
    }

    /**
     * 模拟数据
     * @return
     */
    private String[] getData(){
        String[] names = {
                "Dwight D. Eisenhower",
                "John F. Kennedy",
                "Lyndon B. Johnson",
                "Richard Nixon",
                "Gerald Ford",
                "Jimmy Carter",
                "Ronald Reagan",
                "George H. W. Bush",
                "Bill Clinton",
                "George W. Bush",
                "Barack Obama"};
        return names;
    }

}

 

运行效果:

发表评论
用户名: 匿名