Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中AutoCompleteTextView完整示例(一)

Android中AutoCompleteTextView完整示例(一)

編輯:關於Android編程

MainActivity如下:

package cc.testautocompletetextview;

import cc.testautocompletetextview1.R;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.app.Activity;
/**
 * Demo描述
 * AutoCompleteTextView基本使用完整示例
 * 
 * 注意參數:
 * android:completionThreshold="2"
 * 
 * 參考資料:
 * 《瘋狂Android講義》 作者李剛
 *  Thank you very much
 */
public class MainActivity extends Activity {
	private AutoCompleteTextView mAutoCompleteTextView;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}
   
	private void init(){
		mAutoCompleteTextView=(AutoCompleteTextView) findViewById(R.id.autoCompleteTextView);
		String [] emails=new String []{"[email protected]","[email protected]","[email protected]","[email protected]"};
		ArrayAdapter arrayAdapter
		=new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line, emails);
		mAutoCompleteTextView.setAdapter(arrayAdapter);
	}
	

}


main.xml如下:



    
    
    



  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved