私はAndroidプログラミングが初めてで、ListView
. 簡単な例を読んでいると、それを使用するための 2 つの異なるレイアウトに出くわしました。
ListView
内部を使用するaLinearLayout
:<?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" />
この二つに違いはありますか?もしそうなら、それらのそれぞれはどこで使用されますか?