zuoyefuzheng.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical" >
  6. <LinearLayout
  7. android:id="@+id/main"
  8. android:layout_width="match_parent"
  9. android:layout_height="64dp"
  10. android:background="@color/white"
  11. android:orientation="vertical" >
  12. <RelativeLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_marginTop="12dp"
  16. android:background="@color/white"
  17. android:orientation="horizontal" >
  18. <TextView
  19. android:id="@+id/audit_date"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_marginLeft="20dp"
  23. android:text="2016-05-21 17:23"
  24. android:textColor="@color/grey"
  25. android:textSize="@dimen/input_size" />
  26. <Button
  27. android:id="@+id/auditing_btn"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_alignParentRight="true"
  31. android:layout_marginRight="10dp"
  32. android:background="@drawable/auditing"
  33. android:focusable="false"
  34. android:paddingLeft="5dp"
  35. android:paddingRight="5dp"
  36. android:text="审核中"
  37. android:textColor="@color/white"
  38. android:textSize="@dimen/list_item_btntxt" />
  39. </RelativeLayout>
  40. <TextView
  41. android:id="@+id/audit_data"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_marginLeft="20dp"
  45. android:layout_marginTop="5dp"
  46. android:gravity="center"
  47. android:singleLine="true"
  48. android:text="android.intent.category.LAUNCHER"
  49. android:textColor="@color/grey"
  50. android:textSize="@dimen/input_size" />
  51. </LinearLayout>
  52. </LinearLayout>