Android 去掉listview自帶的藍色背景

  <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:divider="@null"//去掉分割線
        //下面這2個是去掉藍色背景
        android:cacheColorHint="@android:color/transparent"
        android:listSelector="@android:color/transparent"
        android:layout_height="match_parent">
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章