mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/brand_400"
|
|
android:importantForAccessibility="no" />
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/separator_fancy"
|
|
android:importantForAccessibility="no"
|
|
android:layout_marginHorizontal="10dp"/>
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/brand_400"
|
|
android:importantForAccessibility="no" />
|
|
</LinearLayout>
|