0
與按鈕一起從列表中選擇查看一個項目我XMLandroid系統
的按鈕有一個按鈕,列表視圖沿是新的聯繫人和列表是聯繫人列表。 1.如何在此列表視圖上使用ArrayAdapter/OnListItemClick?
setListAdapter(new ArrayAdapter<String>(Contacts.this, R.id.ListView));
該聲明是否正確?
2.該方法是否正確?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/bAddContact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ADD CONTACT" />
<ListView
android:id="@+id/ListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
可以名稱是一個空的數組?因爲我想要做的是一個基本的聯繫人應用程序,其中列表中包含人的姓名和按鈕是新的聯繫人按鈕。我不想要除新聯繫人按鈕以外的任何初始顯示。 – 2012-08-09 11:44:09
什麼,你想要的,如果你想聯繫然後閱讀這篇文章http://stackoverflow.com/questions/11643229/android-application-with-phone-book-synchronization/11643681#11643681。 – Akshay 2012-08-09 11:52:30
你有什麼想要的嗎? – Akshay 2012-08-09 14:26:34