1234567891011121314151617181920212223 |
- <?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:orientation="vertical">
- <TabWidget
- android:id="@+id/zzz_tabWidget"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:divider="@drawable/zzz_tabwidget_divider"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dip"
- android:background="@color/zzz_help_horizental_line_color"/>
- <android.support.v4.view.ViewPager
- android:id="@+id/zzz_viewPager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|