0

私はAndroidプログラミングが初めてで、ListView. 簡単な例を読んでいると、それを使用するための 2 つの異なるレイアウトに出くわしました。

  1. ListView内部を使用するa 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>
    
  2. 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" /> 
    

この二つに違いはありますか?もしそうなら、それらのそれぞれはどこで使用されますか?

4

1 に答える 1