<?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:id="@+id/rootView" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white" android:orientation="vertical"> <com.pengxh.kt.lite.widget.TitleBarView android:id="@+id/titleView" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/mainThemeColor" app:tbv_left_image="@drawable/ic_title_left" app:tbv_only_show_title="false" app:tbv_show_left_image="true" app:tbv_show_right_image="false" app:tbv_text="关于我们" app:tbv_text_color="@color/white" app:tbv_text_size="@dimen/sp_18" /> <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="@string/app_name" android:textColor="@color/mainTextColor" android:textSize="@dimen/sp_16" /> <TextView android:id="@+id/versionCodeView" 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/sp_16" /> <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/sp_16" /> <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/sp_16" /> </LinearLayout> </RelativeLayout> </LinearLayout>