Added migration section in settings layout

This commit is contained in:
merkost 2023-07-07 21:29:35 +10:00
parent 4cecdf5267
commit 8c99986e25

View File

@ -346,6 +346,46 @@
android:text="@string/display_success_message" /> android:text="@string/display_success_message" />
</RelativeLayout> </RelativeLayout>
<include
android:id="@+id/settings_general_settings_divider"
layout="@layout/divider" />
<TextView
android:id="@+id/settings_migrating_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/migrating" />
<RelativeLayout
android:id="@+id/settings_export_notes_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_export_notes_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/export_notes" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_import_notes_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_import_notes_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/import_notes" />
</RelativeLayout>
</LinearLayout> </LinearLayout>
</androidx.core.widget.NestedScrollView> </androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>