mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 18:27:18 +00:00
24 lines
952 B
XML
24 lines
952 B
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"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_width="match_parent">
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/linearLayout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:minHeight="60dp"
|
||
|
|
android:padding="5dp"
|
||
|
|
android:paddingTop="8dp"
|
||
|
|
android:paddingBottom="8dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:clickable="true"
|
||
|
|
android:background="@drawable/btn_habit_background">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/imageView"
|
||
|
|
android:layout_width="60dp"
|
||
|
|
android:layout_height="60dp"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:scaleType="fitEnd"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</android.support.v7.widget.CardView>
|