mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-23 14:17:15 +00:00
25 lines
1.1 KiB
XML
25 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="match_parent"
|
|
android:orientation="vertical">
|
|
<View
|
|
android:id="@+id/grabber"
|
|
android:layout_width="24dp"
|
|
android:layout_height="3dp"
|
|
android:background="@drawable/layout_rounded_bg"
|
|
android:backgroundTint="@color/offset_background"
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
|
android:layout_gravity="center_horizontal"
|
|
/>
|
|
<com.habitrpg.android.habitica.ui.views.HabiticaScrollView
|
|
android:id="@+id/nested_scroll_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</com.habitrpg.android.habitica.ui.views.HabiticaScrollView>
|
|
</LinearLayout>
|