2016-11-25 14:03:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-12-18 17:46:03 +00:00
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-24 11:45:23 +00:00
|
|
|
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_margin="5dp"
|
|
|
|
|
android:clickable="true"
|
2023-12-21 13:17:06 +00:00
|
|
|
android:focusable="true"
|
2022-05-24 09:30:13 +00:00
|
|
|
android:foreground="?selectableItemBackground"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:baselineAligned="false"
|
2023-12-21 13:17:06 +00:00
|
|
|
android:paddingStart="0dp"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:paddingEnd="16dp">
|
2016-11-25 14:03:47 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="12dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/gem_icon"
|
|
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/gemPrizeTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
2017-01-16 19:03:00 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_gravity="center"
|
2017-01-16 19:03:00 +00:00
|
|
|
android:gravity="center"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:ellipsize="middle"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
tools:text="0"
|
|
|
|
|
android:textColor="@color/gem_icon_color"
|
|
|
|
|
android:textSize="17sp"
|
|
|
|
|
android:textStyle="bold"/>
|
2016-12-18 17:46:03 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:layout_weight="6"
|
|
|
|
|
android:orientation="vertical">
|
2016-11-25 14:03:47 +00:00
|
|
|
|
|
|
|
|
|
2021-02-23 10:49:59 +00:00
|
|
|
<TextView
|
2018-07-24 11:45:23 +00:00
|
|
|
android:id="@+id/challenge_name"
|
|
|
|
|
style="@style/ChallengeName"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:maxLines="3"
|
|
|
|
|
tools:text="Name" />
|
2016-11-25 14:03:47 +00:00
|
|
|
|
2021-02-23 10:49:59 +00:00
|
|
|
<TextView
|
2018-07-24 11:45:23 +00:00
|
|
|
android:id="@+id/challenge_shorttext"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
tools:text="Description"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_small"
|
2019-01-08 12:52:42 +00:00
|
|
|
android:layout_marginBottom="@dimen/spacing_small"/>
|
2016-12-01 20:48:24 +00:00
|
|
|
|
2017-01-12 20:44:40 +00:00
|
|
|
<LinearLayout
|
2019-01-08 12:52:42 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
2017-01-12 20:44:40 +00:00
|
|
|
<ImageView
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_width="18dp"
|
2019-01-08 12:52:42 +00:00
|
|
|
android:layout_height="20dp"
|
2021-02-04 17:21:04 +00:00
|
|
|
android:src="@drawable/dialogue_participants"
|
|
|
|
|
app:tint="@color/text_ternary"/>
|
2017-01-12 20:44:40 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2018-07-24 11:45:23 +00:00
|
|
|
android:id="@+id/participantCount"
|
|
|
|
|
style="@style/ChallengeTaskDetails"
|
2019-01-08 12:52:42 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_height="20dp"
|
2021-02-04 17:21:04 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/spacing_small"
|
2019-01-08 12:52:42 +00:00
|
|
|
android:gravity="center_vertical"
|
2018-07-24 11:45:23 +00:00
|
|
|
tools:text="12334" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/official_challenge_view"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/spacing_small"
|
2017-01-16 19:03:00 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-07-24 11:45:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Pill.Purple"
|
|
|
|
|
android:text="@string/official"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/is_joined_label"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/spacing_small"
|
2017-01-16 19:03:00 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-07-24 11:45:23 +00:00
|
|
|
style="@style/Pill.Selected.Green"
|
|
|
|
|
android:text="@string/joined"/>
|
|
|
|
|
</LinearLayout>
|
2016-12-19 17:01:54 +00:00
|
|
|
</LinearLayout>
|
2023-12-21 13:17:06 +00:00
|
|
|
</LinearLayout>
|