|
|
@@ -0,0 +1,203 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+
|
|
|
+<LinearLayout 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="wrap_content"
|
|
|
+ android:background="@color/white_light"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@mipmap/home_blue_bg"
|
|
|
+ android:paddingBottom="@dimen/content_padding_10"
|
|
|
+ android:paddingEnd="@dimen/content_padding_20"
|
|
|
+ android:paddingStart="@dimen/content_padding_20"
|
|
|
+ android:paddingTop="@dimen/status_bar_height">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/img_baseactivity_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/layout_heigh_default"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:scaleType="centerInside"
|
|
|
+ android:src="@drawable/narrow_back_white"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/txt_baseactivity_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/layout_heigh_default"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/app_name"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/text_size_4"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/img_baseactivity_title"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/img_baseactivity_title" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/about_us_iv"
|
|
|
+ android:layout_width="70dp"
|
|
|
+ android:layout_height="70dp"
|
|
|
+ android:src="@mipmap/icon_phone"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/about_us_app_tv"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/txt_baseactivity_title" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_app_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/app_name"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/text_size_20"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/about_us_version_tv"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/about_us_iv" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_version_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="版本:V2.6"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/text_size_4"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/about_us_app_tv" />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/style_about_us_title"
|
|
|
+ android:text="相关信息" />
|
|
|
+
|
|
|
+ <RelativeLayout style="@style/style_about_us_rl">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_addr_label_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="官方地址" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_addr_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="天府四街" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/about_us_line_1"
|
|
|
+ style="@style/style_about_us_line"
|
|
|
+ android:layout_below="@+id/about_us_addr_label_tv" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_platform_label_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_below="@id/about_us_line_1"
|
|
|
+ android:text="官方微信公众平台" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_platform_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_below="@id/about_us_line_1"
|
|
|
+ android:text="好玩之家" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/style_about_us_title"
|
|
|
+ android:text="投诉与建议" />
|
|
|
+
|
|
|
+ <RelativeLayout style="@style/style_about_us_rl">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="QQ" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_qq_back_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="13888888888" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/style_about_us_title"
|
|
|
+ android:text="商务合作" />
|
|
|
+
|
|
|
+ <RelativeLayout style="@style/style_about_us_rl">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_qq_label_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="QQ" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_qq_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:text="88888888" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/about_us_line_2"
|
|
|
+ style="@style/style_about_us_line"
|
|
|
+ android:layout_below="@+id/about_us_qq_label_tv" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_email_label_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
+ android:layout_below="@id/about_us_line_2"
|
|
|
+ android:text="邮箱" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_email_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_below="@id/about_us_line_2"
|
|
|
+ android:text="88888888@qq.com" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/style_about_us_title"
|
|
|
+ android:text="公司简介" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ style="@style/style_about_us_rl"
|
|
|
+ android:layout_marginBottom="@dimen/content_padding_20">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_us_other_tv"
|
|
|
+ style="@style/style_about_us_label"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:text="公司简介" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
+</LinearLayout>
|