mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 00:30:00 +00:00
20 lines
891 B
XML
20 lines
891 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="@dimen/section_leftright_padding">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/imageView"
|
||
|
|
android:layout_width="@dimen/shop_width"
|
||
|
|
android:layout_height="@dimen/shop_height"
|
||
|
|
android:linksClickable="true"
|
||
|
|
android:autoLink="web" />
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/descriptionView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="@dimen/section_leftright_padding"
|
||
|
|
android:layout_marginStart="@dimen/section_leftright_padding"/>
|
||
|
|
</LinearLayout>
|