|
@@ -0,0 +1,69 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<android.support.constraint.ConstraintLayout 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="wrap_content"
|
|
|
|
|
+ android:background="@color/white">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/find_information_game_icon"
|
|
|
|
|
+ android:layout_width="70dp"
|
|
|
|
|
+ android:layout_height="70dp"
|
|
|
|
|
+ android:src="@mipmap/icon"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/find_information_game_name"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:maxLines="2"
|
|
|
|
|
+ android:text="小绵羊小绵羊小绵羊小绵羊小小绵羊小绵羊小绵羊小绵羊小小绵羊小绵羊小绵羊小绵羊小小绵羊小绵羊小绵羊小绵羊小"
|
|
|
|
|
+ android:textColor="#444444"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:layout_marginStart="@dimen/content_padding"
|
|
|
|
|
+ android:layout_marginEnd="@dimen/content_padding"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/find_information_game_time"
|
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/find_information_game_task_center"
|
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/find_information_game_icon" />
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/find_information_game_time"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="@string/app_name"
|
|
|
|
|
+ android:textColor="#cc8e8e8e"
|
|
|
|
|
+ android:gravity="start"
|
|
|
|
|
+ android:textSize="10sp"
|
|
|
|
|
+ android:layout_marginStart="@dimen/content_padding"
|
|
|
|
|
+ android:layout_marginEnd="@dimen/content_padding"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/find_information_game_name"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/find_information_game_task_center"
|
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/find_information_game_icon" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/find_information_game_task_center"
|
|
|
|
|
+ style="@style/style_button_find"
|
|
|
|
|
+ android:text="接受任务"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/find_information_game_task_end_time"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginEnd="@dimen/content_padding_4"
|
|
|
|
|
+ android:layout_marginStart="@dimen/content_padding_4"
|
|
|
|
|
+ android:layout_marginTop="55dp"
|
|
|
|
|
+ android:background="@drawable/shape_ash_stroke_white_solid_rectangle"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="@string/app_name"
|
|
|
|
|
+ android:lines="1"
|
|
|
|
|
+ android:textColor="#989898"
|
|
|
|
|
+ android:textSize="12sp"
|
|
|
|
|
+ android:visibility="gone"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/find_information_game_icon"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/find_information_game_icon"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
+</android.support.constraint.ConstraintLayout>
|