【Android】ListView

 

区切り線設定

  <ListView
    android:id="@+id/ListView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="#80000000"
    android:dividerHeight="1px" >   

区切り線なし

  <ListView
    android:id="@+id/ListView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="@null" >
  </ListView>

 

 

Leave a Reply