2015-11-25 17:47:56 +00:00
|
|
|
<?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"
|
2016-04-14 13:36:17 +00:00
|
|
|
style="@style/CardView.Default">
|
2015-11-25 17:47:56 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
2016-04-14 13:36:17 +00:00
|
|
|
style="@style/CardContent">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:id="@+id/skill_image"
|
|
|
|
|
android:layout_gravity="center_vertical" />
|
2015-11-25 17:47:56 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="0dp"
|
2015-11-26 20:26:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-04-14 13:36:17 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:layout_gravity="center_vertical">
|
2015-11-25 17:47:56 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2016-04-14 13:36:17 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-11-25 17:47:56 +00:00
|
|
|
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"
|
2015-11-26 20:26:53 +00:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginLeft="8dp" />
|
2015-11-25 17:47:56 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|