mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:parentTag="android.widget.LinearLayout"
|
||
|
|
tools:background="@color/brand_100">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/icon_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:src="@drawable/icon_habits_selected"
|
||
|
|
android:layout_gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/title_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="@color/brand_500"
|
||
|
|
tools:text="@string/habits"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:textSize="12sp"
|
||
|
|
android:paddingStart="@dimen/spacing_small"
|
||
|
|
android:paddingEnd="@dimen/spacing_small"
|
||
|
|
/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/selected_title_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
tools:text="@string/habits"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:textSize="12sp"
|
||
|
|
android:fontFamily="@string/font_family_medium"
|
||
|
|
android:paddingStart="@dimen/spacing_small"
|
||
|
|
android:paddingEnd="@dimen/spacing_small"
|
||
|
|
/>
|
||
|
|
</merge>
|