mirror of
https://github.com/FossifyOrg/Notes.git
synced 2026-04-08 00:07:42 -04:00
37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/dialog_open_note_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/small_margin"
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
android:layout_marginEnd="@dimen/small_margin"
|
|
android:minHeight="@dimen/min_open_note_popup_height"
|
|
app:layout_constraintHeight_max="@dimen/max_open_note_popup_height">
|
|
|
|
<org.fossify.commons.views.MyRecyclerView
|
|
android:id="@+id/dialog_open_note_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="@dimen/open_note_popup_bottom_extra_padding"
|
|
tools:itemCount="10"
|
|
tools:listitem="@layout/open_note_item" />
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
<org.fossify.commons.views.MyFloatingActionButton
|
|
android:id="@+id/new_note_fab"
|
|
android:layout_width="@dimen/fab_size"
|
|
android:layout_height="@dimen/fab_size"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="@dimen/activity_margin"
|
|
android:src="@drawable/ic_plus_vector" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|