| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <include layout="@layout/fragment_title" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:orientation="horizontal" >
- <com.dongkesoft.ibossmini.activity.log.PagerSlidingTabStrip
- xmlns:PagerSlidingTabStrip="http://schemas.android.com/apk/res-auto"
- android:id="@+id/vpi_merger"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="8"
- PagerSlidingTabStrip:pstsTabPaddingLeftRight="@dimen/log_tab_width"
- PagerSlidingTabStrip:pstsDividerColor="@color/white"
- PagerSlidingTabStrip:pstsDividerPadding="10dp"
- PagerSlidingTabStrip:pstsIndicatorColor="@color/red"
- PagerSlidingTabStrip:pstsIndicatorHeight="2dp"
- PagerSlidingTabStrip:pstsIndicatorPaddingLR="24dp"
- PagerSlidingTabStrip:pstsScrollOffset="60dp"
- PagerSlidingTabStrip:pstsShouldExpand="false"
- PagerSlidingTabStrip:pstsTextColor="@color/black"
- PagerSlidingTabStrip:pstsTextColorSelected="@color/red"
- PagerSlidingTabStrip:pstsTextSize="14sp"
- PagerSlidingTabStrip:pstsTextSizeSelected="14sp"
- PagerSlidingTabStrip:pstsUnderlineColor="#00000000"
- android:background="#FFFFFF" />
- <LinearLayout
- android:id="@+id/ll_drawerlayout"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="2"
- android:background="@drawable/astuetz_pager_sliding_tab_strip_background"
- android:orientation="horizontal" >
- <ImageView
- android:layout_width="@dimen/iv_screen_width"
- android:layout_height="@dimen/iv_screen_height"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="5dp"
- android:background="@drawable/icon_sx" />
- <TextView
-
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="5dp"
- android:gravity="center"
- android:text="筛选"
- android:textSize="14sp"
- android:textColor="@color/black" />
- </LinearLayout>
- </LinearLayout>
- <android.support.v4.view.ViewPager
- android:id="@+id/vp_merger"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </android.support.v4.view.ViewPager>
- </LinearLayout>
- <RelativeLayout
- android:id="@+id/rl_reply"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:background="@color/light_white"
- android:gravity="center"
- android:visibility="gone" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_weight="1"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/et_reply"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="5dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="5dp"
- android:background="@drawable/edittext_margin_color"
- android:maxLength="200"
- android:singleLine="true"
- android:textSize="@dimen/textsize_16" />
- </LinearLayout>
- <Button
- android:id="@+id/btn_reply"
- android:layout_width="60dp"
- android:layout_height="33dp"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="10dp"
- android:background="@drawable/icon_send"
- android:textSize="@dimen/textsize_16" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
- <com.dongkesoft.ibossmini.view.GenericDrawerLayout
- android:id="@+id/drawerlayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </com.dongkesoft.ibossmini.view.GenericDrawerLayout>
- </FrameLayout>
|