mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
18 lines
753 B
XML
18 lines
753 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center_horizontal">
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
android:id="@+id/icon_view"
|
||
|
|
android:layout_width="48dp"
|
||
|
|
android:layout_height="52dp"
|
||
|
|
android:scaleType="center"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_large"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/description_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/Body2"
|
||
|
|
android:gravity="center_horizontal"/>
|
||
|
|
</LinearLayout>
|