[m] UI & Cleaning

This commit is contained in:
2023-04-07 01:12:03 +02:00
parent dccdd4dbf8
commit f9dc122af5
7 changed files with 98 additions and 47 deletions

View File

@@ -8,15 +8,23 @@
<com.caverock.androidsvg.SVGImageView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_weight="0"
app:css="" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
<androidx.core.widget.NestedScrollView
android:id="@+id/sv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scrollbars="vertical" />
android:layout_height="wrap_content"
android:layout_weight="1">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:nestedScrollingEnabled="false"
android:scrollbars="vertical" />
</androidx.core.widget.NestedScrollView>
</LinearLayout>