mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 00:30:00 +00:00
26 lines
1 KiB
XML
26 lines
1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:minHeight="40dp">
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:src="@drawable/support_faq"
|
||
|
|
android:layout_marginLeft="26dp"
|
||
|
|
android:layout_marginRight="29dp"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/text_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
tools:text="Title"
|
||
|
|
android:layout_marginRight="@dimen/spacing_large"
|
||
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_medium"
|
||
|
|
/>
|
||
|
|
</LinearLayout>
|