You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.5 KiB
63 lines
2.5 KiB
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tabpage="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
|
||
|
<View
|
||
|
android:id="@id/splash_view"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:background="@drawable/welcome_layer" />
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@id/main_view"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:visibility="invisible">
|
||
|
|
||
|
<com.viatech.widget.VPaiViewPager
|
||
|
android:id="@id/viewpager"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_above="@id/navi_bar" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@id/navi_bar"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="@dimen/tab_heigh"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:background="@color/tab_bg"
|
||
|
android:orientation="horizontal"
|
||
|
android:visibility="gone">
|
||
|
|
||
|
<com.viatech.widget.TabPageView
|
||
|
android:id="@id/my_gallery"
|
||
|
android:layout_width="0.0dip"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_weight="1.0"
|
||
|
tabpage:tab_normal="@drawable/gallery_normal"
|
||
|
tabpage:tab_select="@drawable/gallery_selected"
|
||
|
tabpage:tab_text="@string/tab_my_gallery" />
|
||
|
|
||
|
<com.viatech.widget.TabPageView
|
||
|
android:id="@id/camera_preview"
|
||
|
android:layout_width="0.0dip"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_weight="1.0"
|
||
|
android:gravity="center_vertical"
|
||
|
tabpage:tab_normal="@drawable/camera_preview_normal"
|
||
|
tabpage:tab_select="@drawable/camera_preview_selected" />
|
||
|
|
||
|
<com.viatech.widget.TabPageView
|
||
|
android:id="@id/cloud"
|
||
|
android:layout_width="0.0dip"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_weight="1.0"
|
||
|
tabpage:tab_normal="@drawable/me_normal"
|
||
|
tabpage:tab_select="@drawable/me_selected"
|
||
|
tabpage:tab_text="@string/tab_cloud" />
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|
||
|
</FrameLayout>
|