Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android自動提示控件AutoCompleteTextView

Android自動提示控件AutoCompleteTextView

編輯:關於Android編程

在輸入框中輸入我們想要輸入的信息就會出現其他與其相關的提示信息,這種效果在Android中是用AutoCompleteTextView實現的。

<AutoCompleteTextView 
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/autotext"
  />

public class MainActivity extends Activity {
private AutoCompleteTextView autotext;
private ArrayAdapter<String> arrayAdapter;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.test);

    autotext =(AutoCompleteTextView) findViewById(R.id.autotext);
    String [] arr={"aa","aab","aac"};
    arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,arr);
    autotext.setAdapter(arrayAdapter);
  }

}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。

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