mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
103 lines
3.4 KiB
XML
103 lines
3.4 KiB
XML
|
|
<?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"
|
||
|
|
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>
|