android应用开发揭秘examples_04-10笔记(AutoCompleteTextView和MultiAutoCompleteTextView使用)

1.使用AutoCompleteTextView,
1)需要定义提示的String[],
2)还需要定义一个ArrayAdapter关联这个String[] ,
3)最后让AutoCompleteTextView的实例使用setAdapter方法。
是的,就分这三步走就OK了
2.使用MultiAutoCompleteTextView:
 在AutoCompleteTextView的基础上, 要另外setTokenizer();
-----------------------------------------------------------------------------------------------------
直接贴例子, 不再解释了。
1. main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
  <AutoCompleteTextView
  android:id="@+id/AutoCompleteTextView01"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  >
  </AutoCompleteTextView>
  <MultiAutoCompleteTextView
  android:id="@+id/MultiAutoCompleteTextView01"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  >
  </MultiAutoCompleteTextView>
</LinearLayout>


2. java文件

package com.yarin.android.Examples_04_10;

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

public class Activity01 extends Activity
{
    private static final String[]    autoString    = new String[] { "a2", "abf", "abe", "abcde", "abc2", "abcd3", "abcde2", "abc2", "abcd2", "abcde2" };
   
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        //关联关键字
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                android.R.layout.simple_dropdown_item_1line, autoString);

       
        AutoCompleteTextView m_AutoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.AutoCompleteTextView01);
       
        //将adapter添加到AutoCompleteTextView中
        m_AutoCompleteTextView.setAdapter(adapter);
        ///
        MultiAutoCompleteTextView mm_AutoCompleteTextView = (MultiAutoCompleteTextView) findViewById(R.id.MultiAutoCompleteTextView01);
        //将adapter添加到AutoCompleteTextView中
        mm_AutoCompleteTextView.setAdapter(adapter);
        mm_AutoCompleteTextView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值