progress_item.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:orientation="horizontal" >
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical"
  15. android:textSize="@dimen/textsize_14" >
  16. <LinearLayout
  17. android:layout_width="fill_parent"
  18. android:layout_height="60dp"
  19. android:orientation="horizontal" >
  20. <TextView
  21. android:id="@+id/progressname"
  22. android:layout_width="100dp"
  23. android:layout_height="60dp"
  24. android:layout_marginLeft="8dp"
  25. android:gravity="center"
  26. android:text=""
  27. android:textSize="@dimen/textsize_14"
  28. android:visibility="gone" />
  29. <TextView
  30. android:id="@+id/progress1"
  31. android:layout_width="fill_parent"
  32. android:layout_height="60dp"
  33. android:gravity="center"
  34. android:paddingLeft="15dip"
  35. android:paddingTop="8dip"
  36. android:textColor="@color/black"
  37. android:textSize="@dimen/textsize_14" />
  38. </LinearLayout>
  39. </LinearLayout>
  40. </LinearLayout>
  41. <View
  42. android:layout_width="match_parent"
  43. android:layout_height="1dp"
  44. android:background="@color/EBEBEB" />
  45. </LinearLayout>