111 lines
4.7 KiB
XML
111 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<include layout="@layout/action_bar_with_right_icon"/>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_weight="1">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/imgRobotDescription"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/img_inspire"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="创意简介"/>
|
|
</androidx.cardview.widget.CardView>
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp">
|
|
<ImageView
|
|
android:id="@+id/imgRobotBuildStep"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/img_inspire"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="创意搭建"/>
|
|
</androidx.cardview.widget.CardView>
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/imgRobotAction"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/img_inspire"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="动作设计"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_weight="1">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/imgRobotProgram"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/img_inspire"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="程序开发"/>
|
|
</androidx.cardview.widget.CardView>
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp">
|
|
<ImageView
|
|
android:id="@+id/imgRobotShow"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/img_inspire"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="创意展示"/>
|
|
</androidx.cardview.widget.CardView>
|
|
<androidx.legacy.widget.Space
|
|
android:layout_width="150dp"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|