<?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="match_parent" android:layout_height="match_parent" android:background="@color/white" android:orientation="vertical" tools:context=".view.AboutUsActivity"> <include layout="@layout/include_base_title" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/tempView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="@dimen/dp_100" android:background="@mipmap/ic_launcher" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/tempView" android:fontFamily="sans-serif-black" android:gravity="center" android:paddingVertical="@dimen/dp_20" android:text="智能窨井管理助手" android:textColor="@color/mainTextColor" android:textSize="@dimen/textFontSize" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_above="@id/tempLayout" android:gravity="center" android:paddingVertical="@dimen/dp_3" android:text="版本信息:V1.0.0" android:textColor="@color/mainTextColor" android:textSize="@dimen/textFontSize" /> <LinearLayout android:id="@+id/tempLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center" android:orientation="horizontal" android:paddingVertical="@dimen/dp_3"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="客服电话:" android:textColor="@color/mainTextColor" android:textSize="@dimen/textFontSize" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:autoLink="phone" android:text="010-68387447" android:textColorLink="@color/mainThemeColor" android:textSize="@dimen/textFontSize" /> </LinearLayout> </RelativeLayout> </LinearLayout>