0
我是新來的android編程,我只是在學習如何使用ListView
。在閱讀簡單的例子,我在兩個不同的佈局來關於使用它: 佈局中的ListView和單獨的ListView有什麼不同?
使用
ListView
內LinearLayout
:<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FFFFFF"> <ListView android:id="@+id/listView1" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout>
使用
ListView
本身的佈局:<ListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview" android:layout_width="wrap_content" android:layout_height="wrap_content" />
這兩個有區別嗎?如果是這樣,他們每個人在哪裏使用?