mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 09:56:15 +00:00
21 lines
907 B
XML
21 lines
907 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:bind="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="Row"
|
||
|
|
android:clickable="true">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/imageView"
|
||
|
|
android:layout_width="@dimen/gear_image_size"
|
||
|
|
android:layout_height="@dimen/gear_image_size"
|
||
|
|
android:scaleType="fitEnd"
|
||
|
|
android:layout_marginRight="@dimen/row_padding"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:text="Title"
|
||
|
|
style="@style/RowTitle"/>
|
||
|
|
</LinearLayout>
|