<?xml version="1.0" encoding="utf-8"?>
|
<ScrollView 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="match_parent"
|
android:background="@color/white"
|
android:scrollbars="none">
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="226dp"
|
android:id="@+id/iv_img"
|
android:scaleType="centerCrop"
|
app:layout_constraintTop_toTopOf="parent"
|
android:src="@mipmap/game_top"/>
|
|
|
<View
|
android:id="@+id/vqr"
|
android:layout_width="140dp"
|
android:layout_height="140dp"
|
android:layout_marginTop="15dp"
|
android:background="@mipmap/saomaicon"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/iv_img" />
|
|
<ImageView
|
android:id="@+id/iv_description"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
app:layout_constraintTop_toBottomOf="@id/vqr"
|
android:src="@mipmap/game_description"/>
|
|
|
|
<TextView
|
android:id="@+id/tv2"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="50dp"
|
android:gravity="center"
|
android:text="点击查看你的使用数据"
|
style="@style/style_btn_action"
|
android:layout_marginHorizontal="64dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginBottom="10dp"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/iv_description" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</ScrollView>
|