loglist_row.xml 918 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:id="@+id/profile_manager_root_view">
  8. <ListView
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. xmlns:android="http://schemas.android.com/apk/res/android"
  12. android:id="@+id/profile_manager_listview"
  13. android:choiceMode="singleChoice"
  14. android:background="#F2F2F2"
  15. android:dividerHeight="10dp"
  16. android:divider="@android:color/transparent"
  17. android:padding="5dp"
  18. android:layout_alignParentLeft="true"
  19. android:layout_marginLeft="0dp"
  20. android:layout_alignParentTop="true"
  21. android:layout_marginTop="0dp" />
  22. </RelativeLayout>