<?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:id="@+id/mln"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/lightBlue"
|
>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_marginTop="50dp"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="27dp"
|
android:layout_height="27dp"
|
android:src="@drawable/icon_logo" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:layout_marginLeft="6dp"
|
android:text="环境服务"
|
android:textColor="@color/white"
|
android:textSize="20dp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentBottom="true"
|
android:layout_centerHorizontal="true"
|
android:layout_marginBottom="12dp"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/version"
|
android:textColor="@color/white"
|
android:textSize="13dp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/bottomtip"
|
android:textColor="@color/white"
|
android:textSize="13dp" />
|
</LinearLayout>
|
|
<cn.flightfeather.thirdapp.view.OrientedViewPager
|
android:id="@+id/ovp_main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
</cn.flightfeather.thirdapp.view.OrientedViewPager>
|
</RelativeLayout>
|
|
|
</LinearLayout>
|