正在開發listView,在main代碼中選擇listView:
lv = (ListView) findViewById(R.layout.activity_main.xml.id);
XML的目錄結構:
res>layout>activity_main.xml
在main_activity.xml
文件中,如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" >
</ListView>
</RelativeLayout>
我不是很理解XMLid值在Android中使用的原理,請高手解答,謝謝。
<ListView
android:id="@android:id/list"
這個id代表的是使用android系統listView的id
findviewById的話應該是findviewById(android.R.id.xxxx.list);
可以使用 <ListView
android:id="@+id/list"
@+id/list 代表的自己創建一個id叫list 會在R.java中自動生成
這樣的話就能直接在findviewById(R.id.list);獲取listView, 注意這個R導入的包名是你項目的包名
格式應該是yourpackage.R