habitica-android/Habitica/res/layout/skill_task_item_card.xml

42 lines
1.8 KiB
XML
Raw Normal View History

2017-04-20 13:33:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2017-05-15 09:54:39 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
2020-09-04 16:17:34 +00:00
android:background="?attr/colorContentBackground">
2021-03-31 11:14:01 +00:00
<LinearLayout
2017-04-20 13:33:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2017-05-15 09:54:39 +00:00
<LinearLayout
2021-03-31 11:14:01 +00:00
android:layout_width="0dp"
android:layout_weight="1"
2017-05-15 09:54:39 +00:00
android:layout_height="wrap_content"
android:orientation="vertical"
2020-09-17 11:47:02 +00:00
android:paddingStart="@dimen/spacing_large"
android:paddingEnd="@dimen/spacing_large"
2017-05-15 09:54:39 +00:00
android:paddingBottom="20dp"
android:paddingTop="20dp">
2021-02-23 10:49:59 +00:00
<TextView
2017-05-15 09:54:39 +00:00
android:id="@+id/titleTextView"
style="@style/CardTitle"
2017-04-20 13:33:33 +00:00
android:layout_width="match_parent"
2017-05-15 09:54:39 +00:00
android:layout_height="wrap_content" />
2017-04-20 13:33:33 +00:00
2021-02-23 10:49:59 +00:00
<TextView
2017-05-15 09:54:39 +00:00
android:id="@+id/notesTextView"
style="@style/CardText"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
<View
android:id="@+id/rightBorderView"
2021-03-31 11:14:01 +00:00
android:layout_width="8dp"
2017-05-15 09:54:39 +00:00
android:layout_height="match_parent"
android:gravity="center"
2021-03-31 11:14:01 +00:00
android:background="@color/red_10"/>
</LinearLayout>
2017-05-15 09:54:39 +00:00
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/cell_separator"/>
</LinearLayout>