66 lines
2.5 KiB
XML
66 lines
2.5 KiB
XML
|
<?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:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
|
||
|
android:background="#000002">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginStart="13dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginEnd="13dp"
|
||
|
android:orientation="vertical"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/live_task_info_back"
|
||
|
android:layout_width="24dp"
|
||
|
android:layout_height="24dp"
|
||
|
android:layout_weight="1"
|
||
|
tools:srcCompat="@mipmap/icon_back" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:text="@string/live_task_info_title"
|
||
|
android:textColor="#808080"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:background="@drawable/background_151515"
|
||
|
android:padding="15dp"
|
||
|
android:text="@string/live_task_info_msg1"
|
||
|
android:textColor="#80CEF2" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="5dp"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:layout_marginEnd="5dp"
|
||
|
android:layout_marginBottom="50dp"
|
||
|
android:text="@string/live_task_info_msg2"
|
||
|
android:textColor="#CCCCCC" />
|
||
|
</LinearLayout>
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|