12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/view_layout"
- android:layout_width="match_parent"
- android:layout_height="217dp">
- <ImageView
- android:id="@+id/chat_room_view"
- android:layout_width="match_parent"
- android:layout_height="217dip"
- android:scaleType="centerCrop"/>
- <ViewStub
- android:id="@+id/barrage_view_stub"
- android:layout_width="match_parent"
- android:layout_height="217dip"
- android:inflatedId="@+id/barrage_view_after_inflate"
- android:layout="@layout/chat_room_barrage"/>
- <ImageView
- android:id="@+id/back_arrow"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/chat_room_back_arrow_selector"/>
- <TextView
- android:id="@+id/online_status"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:layout_marginRight="10dp"
- android:layout_marginTop="10dp"
- android:background="@color/transparent"
- android:padding="5dp"
- android:text="@string/internet_broken"
- android:textColor="@color/color_red_ccfa3c55"
- android:textSize="@dimen/text_size_12"
- android:visibility="gone"/>
- </FrameLayout>
- <com.sheishuo.app.common.ui.viewpager.PagerSlidingTabStrip
- android:id="@+id/chat_room_tabs"
- android:layout_width="match_parent"
- android:layout_height="@dimen/pager_sliding_tab_strip_height"
- android:background="@color/white"/>
- <android.support.v4.view.ViewPager
- android:id="@+id/chat_room_viewpager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|