<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<com.videogo.widget.TitleBar
|
android:id="@+id/title_bar"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
/>
|
|
<android.support.v4.view.ViewPager
|
android:id="@+id/pager"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" >
|
|
<android.support.v4.view.PagerTabStrip
|
android:id="@+id/pager_tab_strip"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_gravity="top"
|
android:background="#33b5e5"
|
android:paddingBottom="4dp"
|
android:paddingTop="4dp"
|
android:textColor="#fff" />
|
</android.support.v4.view.ViewPager>
|
|
<TextView
|
android:id="@+id/emptyView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:text="Empty"
|
android:gravity="center"
|
android:visibility="gone"/>
|
|
</LinearLayout>
|