130 lines
4.7 KiB
XML
130 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView 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:layout_gravity="center"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="16dp"
|
|
app:cardBackgroundColor="@color/colorPrimary"
|
|
app:cardCornerRadius="2dp"
|
|
app:cardUseCompatPadding="true"
|
|
app:contentPadding="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/objective_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="20sp"
|
|
tools:text="1. Title" />
|
|
|
|
<TextView
|
|
android:id="@+id/objective_objective"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textColor="#FFFFFF"
|
|
tools:text="Objective" />
|
|
|
|
<TextView
|
|
android:id="@+id/objective_gate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textColor="#FFFFFF"
|
|
android:textStyle="bold"
|
|
tools:text="Gate" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/objective_progress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:orientation="vertical" >
|
|
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/objective_verify"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/objectives_button_verify" />
|
|
|
|
<Button
|
|
android:id="@+id/objective_start"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/objectives_button_start" />
|
|
|
|
<Button
|
|
android:id="@+id/objective_unfinish"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/objectives_button_unfinish" />
|
|
|
|
<Button
|
|
android:id="@+id/objective_unstart"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/objectives_button_unstart" />
|
|
|
|
<TextView
|
|
android:id="@+id/objective_inputhint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/enter_code_obtained_from_developers_to_bypass_the_rest_of_objectives" />
|
|
|
|
<TextView
|
|
android:id="@+id/objective_requestcode"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Request code: XXXXX" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal" >
|
|
|
|
<EditText
|
|
android:id="@+id/objective_input"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ems="10"
|
|
android:hint="XXXXXXXXXX"
|
|
android:inputType="text" />
|
|
|
|
<Button
|
|
android:id="@+id/objective_enterbutton"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/objectives_button_enter" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/objective_accomplished"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textColor="#FFFFFF"
|
|
tools:text="Accomplished" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|