image_enlarge.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/message_linear"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <RelativeLayout
  7. android:layout_width="fill_parent"
  8. android:layout_height="65dp"
  9. >
  10. <TextView
  11. android:id="@+id/btnback"
  12. android:layout_marginLeft="5dp"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_centerVertical="true"
  16. android:text="返回"
  17. android:textSize="@dimen/textsize_20"
  18. android:textColor="@color/white"
  19. />
  20. <TextView
  21. android:id="@+id/delbtn"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="删除"
  25. android:layout_centerVertical="true"
  26. android:layout_marginRight="5dp"
  27. android:layout_alignParentRight="true"
  28. android:textSize="@dimen/textsize_20"
  29. android:textColor="@color/white"
  30. />
  31. </RelativeLayout>
  32. <FrameLayout
  33. android:layout_width="fill_parent"
  34. android:layout_height="fill_parent"
  35. android:orientation="vertical" >
  36. <com.jiaju.widget.HackyViewPager
  37. android:id="@+id/vpage"
  38. android:layout_width="fill_parent"
  39. android:layout_height="fill_parent"
  40. android:background="#000000" />
  41. <RelativeLayout
  42. android:layout_width="fill_parent"
  43. android:layout_height="wrap_content"
  44. android:orientation="vertical" >
  45. <LinearLayout
  46. android:id="@+id/viewGroup"
  47. android:layout_width="fill_parent"
  48. android:layout_height="30dp"
  49. android:background="@color/light_black"
  50. android:layout_alignParentBottom="true"
  51. android:gravity="center_horizontal|center_vertical"
  52. android:orientation="horizontal" >
  53. </LinearLayout>
  54. </RelativeLayout>
  55. </FrameLayout>
  56. </LinearLayout>