<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:orientation="vertical"
|
android:weightSum="10"
|
android:layout_height="match_parent">
|
<com.zhy.android.percent.support.PercentLinearLayout
|
android:layout_weight="9"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical"
|
android:layout_height="0dp"
|
android:layout_width="match_parent"
|
app:layout_heightPercent="70%h"
|
>
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<ImageView
|
android:id="@+id/bgImg"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
</ImageView>
|
|
<TextView
|
android:layout_gravity="bottom"
|
android:layout_marginBottom="60dp"
|
|
android:textSize="@dimen/text_size_20"
|
android:id="@+id/logoContent"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
</TextView>
|
</FrameLayout>
|
|
|
</com.zhy.android.percent.support.PercentLinearLayout>
|
|
<LinearLayout
|
android:layout_weight="3"
|
android:layout_width="match_parent"
|
android:background="@color/colorCommonBlue"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<RelativeLayout
|
android:layout_marginBottom="20dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<ImageView
|
android:layout_centerHorizontal="true"
|
android:id="@+id/dotImg"
|
android:layout_width="54dp"
|
android:layout_height="8dp">
|
</ImageView>
|
</RelativeLayout>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<Button
|
android:layout_centerHorizontal="true"
|
android:id="@+id/guide_btn"
|
android:textSize="@dimen/text_size_15"
|
android:textColor="@color/white"
|
android:background="@drawable/shape_bottom_common"
|
android:text="@string/ljty"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content" />
|
</RelativeLayout>
|
|
<TextView
|
android:id="@+id/slogan1"
|
android:layout_marginLeft="@dimen/margin_splash"
|
android:layout_width="match_parent"
|
android:textColor="@color/white"
|
android:textSize="@dimen/text_size_20"
|
android:layout_height="wrap_content"
|
android:text="@string/slogan2">
|
</TextView>
|
<TextView
|
android:id="@+id/slogan2"
|
android:layout_marginLeft="@dimen/margin_splash"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="@string/slogan3"
|
android:textColor="@color/white"
|
android:textSize="@dimen/text_size_20"
|
>
|
</TextView>
|
</LinearLayout>
|
|
</LinearLayout>
|