<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:id="@+id/main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context=".activity.AboutCompanyActivity">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
tools:ignore="MissingConstraints">
|
<!-- Toolbar (标题栏) -->
|
<androidx.appcompat.widget.Toolbar
|
android:id="@+id/about_company_toolbar"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#F9F9F9"
|
android:elevation="4dp"
|
android:layout_gravity="center"
|
android:gravity="center"
|
tools:ignore="MissingConstraints">
|
|
<!-- 自定义标题 TextView -->
|
<TextView
|
android:id="@+id/about_company_toolbar_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="关于我们"
|
android:textColor="@android:color/black"
|
android:textSize="18sp"
|
android:layout_gravity="center"
|
android:gravity="center" /> <!-- 确保标题居中 -->
|
|
</androidx.appcompat.widget.Toolbar>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:gravity="center"
|
tools:ignore="MissingConstraints">
|
<ImageView
|
android:layout_width="200dp"
|
android:layout_height="200dp"
|
android:src="@mipmap/logo"
|
>
|
|
</ImageView>
|
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
tools:ignore="MissingConstraints">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:text="版本10.10.0(101000000)"
|
>
|
</TextView>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="380dp">
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
app:layout_constraintBottom_toBottomOf="parent"
|
tools:ignore="MissingConstraints">
|
<TextView
|
android:id="@+id/record_number_text"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:text="苏ICP备16047984号-1"
|
>
|
</TextView>
|
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
tools:ignore="MissingConstraints">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:text="苏州云游四方信息科技有限公司"
|
>
|
</TextView>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|