mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-30 02:30:38 +00:00
38 lines
1.4 KiB
XML
38 lines
1.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:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="5dp">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:padding="8dp">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
|
android:id="@+id/skill_text" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/skill_notes"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/price_button"
|
||
|
|
android:background="@color/brand_100"
|
||
|
|
android:textColor="@android:color/white" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</android.support.v7.widget.CardView>
|