メイン アクティビティのボタンを押してデータベースに名前を送信するためにテキスト フィールドを使用しています。別のアクティビティでは、名前を表示するためにオートコンプリート テキストビューを使用しています。オートコンプリート テキストビューで名前を表示するためのコード:
for (Contact cn : contact) {
String[] s1=new String[]{(cn.getName())};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice,s1);
a1.setThreshold(1);
a1.setAdapter(adapter);
}