|
|
@@ -0,0 +1,49 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/title_bar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="?actionBarSize"
|
|
|
+ android:background="#ffffff"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:paddingLeft="16dp"
|
|
|
+ android:paddingRight="16dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/back_but"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:contentDescription="@string/image_des"
|
|
|
+ android:padding="10dp"
|
|
|
+ android:src="@drawable/narrow_back_black" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="新手引导"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="17sp" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/title_bar">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="10dp"
|
|
|
+ android:text="@string/new_nav_tips_title" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|