123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="@dimen/dalan_main_width"
- android:layout_height="@dimen/dalan_main_height"
- android:layout_gravity="center"
- android:background="@drawable/zk_shape_bg"
- android:orientation="horizontal">
- <include layout="@layout/zk_llyt_left_tab" />
- <TextView
- android:layout_width="@dimen/dalan_split_line_width"
- android:layout_height="match_parent"
- android:layout_marginBottom="@dimen/dalan_split_line_margin"
- android:layout_marginTop="@dimen/dalan_split_line_margin"
- android:background="@color/dalan_split_line_gray_white" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical"
- android:paddingBottom="@dimen/dalan_split_line_margin">
- <ImageView
- android:id="@+id/iv_logo"
- android:layout_width="130dp"
- android:layout_height="@dimen/dalan_logo_height"
- android:src="@drawable/zk_logo" />
- <FrameLayout
- android:id="@+id/dalan_flyt_fragment_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></FrameLayout>
- </LinearLayout>
- </LinearLayout>
|