mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
42 lines
No EOL
1.7 KiB
XML
42 lines
No EOL
1.7 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="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:parentTag="android.widget.LinearLayout">
|
|
<LinearLayout
|
|
android:id="@+id/section_title_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="@dimen/spacing_large"
|
|
android:paddingEnd="32dp"
|
|
android:gravity="center_vertical">
|
|
<TextView
|
|
android:id="@+id/titleTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/text_primary"
|
|
tools:text="Example"/>
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="18dp"
|
|
android:layout_marginStart="@dimen/spacing_medium"
|
|
android:layout_marginEnd="@dimen/spacing_medium">
|
|
<ImageView
|
|
android:id="@+id/infoIconView"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_gravity="center_vertical|start"/>
|
|
</FrameLayout>
|
|
<ImageView
|
|
android:id="@+id/caretView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="center" />
|
|
</LinearLayout>
|
|
</merge> |