2016-11-25 14:03:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/card_view"
|
|
|
|
|
style="@style/CardView.Default"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-30 18:57:12 +00:00
|
|
|
android:clickable="true"
|
2016-11-25 14:03:47 +00:00
|
|
|
android:layout_margin="5dp">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
style="@style/CardContent.Compact"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/challenge_name"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:baselineAligned="false"
|
|
|
|
|
android:weightSum="1.0">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.5">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/leader_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
|
android:ellipsize="middle"
|
|
|
|
|
android:lines="1" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.5"
|
|
|
|
|
android:gravity="right">
|
|
|
|
|
|
|
|
|
|
<ImageView android:src="@drawable/ic_people_black_24dp"
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="20dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/memberCountTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="middle"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="0"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
|
android:paddingStart="5dp" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:baselineAligned="false"
|
|
|
|
|
android:gravity="end"
|
|
|
|
|
android:weightSum="1.0">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.5"
|
|
|
|
|
android:gravity="end"
|
|
|
|
|
android:id="@+id/gem_prize_layout">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="20dp"
|
|
|
|
|
android:src="@drawable/ic_header_gem" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/gemPrizeTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="middle"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="0"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
|
android:paddingStart="5dp" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</android.support.v7.widget.CardView>
|