activity_fragment_log.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:fitsSystemWindows="true" >
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent" >
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:orientation="vertical" >
  13. <include layout="@layout/fragment_title" />
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="45dp"
  17. android:orientation="horizontal" >
  18. <com.dongkesoft.ibossmini.activity.log.PagerSlidingTabStrip
  19. xmlns:PagerSlidingTabStrip="http://schemas.android.com/apk/res-auto"
  20. android:id="@+id/vpi_merger"
  21. android:layout_width="0dp"
  22. android:layout_height="match_parent"
  23. android:layout_weight="8"
  24. PagerSlidingTabStrip:pstsTabPaddingLeftRight="@dimen/log_tab_width"
  25. PagerSlidingTabStrip:pstsDividerColor="@color/white"
  26. PagerSlidingTabStrip:pstsDividerPadding="10dp"
  27. PagerSlidingTabStrip:pstsIndicatorColor="@color/red"
  28. PagerSlidingTabStrip:pstsIndicatorHeight="2dp"
  29. PagerSlidingTabStrip:pstsIndicatorPaddingLR="24dp"
  30. PagerSlidingTabStrip:pstsScrollOffset="60dp"
  31. PagerSlidingTabStrip:pstsShouldExpand="false"
  32. PagerSlidingTabStrip:pstsTextColor="@color/black"
  33. PagerSlidingTabStrip:pstsTextColorSelected="@color/red"
  34. PagerSlidingTabStrip:pstsTextSize="14sp"
  35. PagerSlidingTabStrip:pstsTextSizeSelected="14sp"
  36. PagerSlidingTabStrip:pstsUnderlineColor="#00000000"
  37. android:background="#FFFFFF" />
  38. <LinearLayout
  39. android:id="@+id/ll_drawerlayout"
  40. android:layout_width="0dp"
  41. android:layout_height="match_parent"
  42. android:layout_weight="2"
  43. android:background="@drawable/astuetz_pager_sliding_tab_strip_background"
  44. android:orientation="horizontal" >
  45. <ImageView
  46. android:layout_width="@dimen/iv_screen_width"
  47. android:layout_height="@dimen/iv_screen_height"
  48. android:layout_gravity="center_vertical"
  49. android:layout_marginLeft="5dp"
  50. android:background="@drawable/icon_sx" />
  51. <TextView
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:layout_gravity="center_vertical"
  55. android:layout_marginLeft="5dp"
  56. android:gravity="center"
  57. android:text="筛选"
  58. android:textSize="14sp"
  59. android:textColor="@color/black" />
  60. </LinearLayout>
  61. </LinearLayout>
  62. <android.support.v4.view.ViewPager
  63. android:id="@+id/vp_merger"
  64. android:layout_width="match_parent"
  65. android:layout_height="match_parent" >
  66. </android.support.v4.view.ViewPager>
  67. </LinearLayout>
  68. <RelativeLayout
  69. android:id="@+id/rl_reply"
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:layout_alignParentBottom="true"
  73. android:background="@color/light_white"
  74. android:gravity="center"
  75. android:visibility="gone" >
  76. <LinearLayout
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content"
  79. android:background="@color/white"
  80. android:orientation="horizontal" >
  81. <LinearLayout
  82. android:layout_width="0dp"
  83. android:layout_height="40dp"
  84. android:layout_weight="1"
  85. android:orientation="vertical" >
  86. <EditText
  87. android:id="@+id/et_reply"
  88. android:layout_width="match_parent"
  89. android:layout_height="match_parent"
  90. android:layout_marginBottom="5dp"
  91. android:layout_marginLeft="10dp"
  92. android:layout_marginRight="10dp"
  93. android:layout_marginTop="5dp"
  94. android:background="@drawable/edittext_margin_color"
  95. android:maxLength="200"
  96. android:singleLine="true"
  97. android:textSize="@dimen/textsize_16" />
  98. </LinearLayout>
  99. <Button
  100. android:id="@+id/btn_reply"
  101. android:layout_width="60dp"
  102. android:layout_height="33dp"
  103. android:layout_gravity="center_vertical"
  104. android:layout_marginRight="10dp"
  105. android:background="@drawable/icon_send"
  106. android:textSize="@dimen/textsize_16" />
  107. </LinearLayout>
  108. </RelativeLayout>
  109. </RelativeLayout>
  110. <com.dongkesoft.ibossmini.view.GenericDrawerLayout
  111. android:id="@+id/drawerlayout"
  112. android:layout_width="match_parent"
  113. android:layout_height="match_parent" >
  114. </com.dongkesoft.ibossmini.view.GenericDrawerLayout>
  115. </FrameLayout>