nim_picker_image_folder_activity.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@color/white">
  6. <LinearLayout
  7. android:id="@+id/picker_image_folder_loading"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:gravity="center_horizontal"
  12. android:orientation="vertical" >
  13. <TextView
  14. android:id="@+id/picker_image_folder_loading_tips"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="@string/picker_image_album_loading"
  18. android:textSize="16sp"
  19. android:textColor="@color/color_grey_999999" />
  20. <TextView
  21. android:id="@+id/picker_image_folder_loading_empty"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="@string/picker_image_album_empty"
  25. android:textSize="16sp"
  26. android:textColor="@color/color_grey_999999"
  27. android:visibility="gone"/>
  28. </LinearLayout>
  29. <ListView
  30. android:id="@+id/picker_image_folder_listView"
  31. style="@style/list_view"
  32. android:layout_width="fill_parent"
  33. android:layout_height="fill_parent"
  34. android:divider="@color/color_split_line_d9d9d9"
  35. android:dividerHeight="1dip"
  36. android:listSelector="@color/transparent"
  37. android:cacheColorHint="@color/transparent"/>
  38. </RelativeLayout>