私はAutoCompleteTextView
を作成してコースタイトル(sqlite dbから取得)のリストを検索しました。ユーザーがドロップダウンメニューからタイトルをクリックすると、彼の選択についてのデータベースからの全情報は、AutoCompleteTextView
の下に作成されたテキストビューで表示されます。Android AutoCompleteTextView onClickの問題
私はかなりプログラミングの新人です、特にアンドロイドのために、setOnItemClickListener
を使用して、以下のTextView
のデータベースのインスタンスをどのように使って正確に説明できたら本当に感謝します。
レイアウト(R.layout.main_courses)のコードは
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<AutoCompleteTextView
android:id="@+id/autocomplete_course"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Search for a course"/>
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/autocomplete_course"
android:hint="Information about the course will appear here" />
</RelativeLayout>
であり、私がこれまで書いてきたAutoCompleteTextViewためのコードは次のとおりです。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_courses);
DataBase db = new DataBase(this.getApplicationContext());
db.openDataBase();
ArrayList<String> aCourses = db.getCoursesArr();
db.close();
AutoCompleteTextView search = (AutoCompleteTextView) findViewById(R.id.autocomplete_course);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_courses, aCourses);
search.setAdapter(adapter);
}