rename folder keepass2android => keepass2android-app
This commit is contained in:
44
src/keepass2android-app/Resources/menu/entry.xml
Normal file
44
src/keepass2android-app/Resources/menu/entry.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin.
|
||||
|
||||
Keepass2Android is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Keepass2Android is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item android:id="@+id/menu_lock"
|
||||
android:icon="@drawable/baseline_lock_24"
|
||||
android:title="@string/menu_lock"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_toggle_pass"
|
||||
android:title="@string/show_password"
|
||||
android:icon="@drawable/baseline_visibility_24"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_delete"
|
||||
android:icon="@drawable/baseline_delete_24"
|
||||
android:title="@string/menu_delete"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_move"
|
||||
android:icon="@drawable/baseline_content_cut_24"
|
||||
android:title="@string/menu_move"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_donate"
|
||||
android:title="@string/menu_donate"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
</menu>
|
34
src/keepass2android-app/Resources/menu/entry_edit.xml
Normal file
34
src/keepass2android-app/Resources/menu/entry_edit.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin.
|
||||
|
||||
Keepass2Android is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Keepass2Android is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">>
|
||||
<item android:id="@+id/menu_save"
|
||||
android:title="@string/entry_save"
|
||||
android:icon="@drawable/baseline_save_24"
|
||||
app:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_cancel"
|
||||
android:title="@string/cancel"
|
||||
android:icon="@drawable/baseline_close_24"
|
||||
app:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_show_all"
|
||||
android:title="@string/menu_show_all"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
</menu>
|
31
src/keepass2android-app/Resources/menu/fileselect.xml
Normal file
31
src/keepass2android-app/Resources/menu/fileselect.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin.
|
||||
|
||||
Keepass2Android is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Keepass2Android is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<item android:id="@+id/menu_about"
|
||||
android:title="@string/menu_about"
|
||||
android:icon="@drawable/baseline_help_24"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_app_settings"
|
||||
android:title="@string/menu_app_settings"
|
||||
android:icon="@drawable/baseline_settings_24"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
</menu>
|
77
src/keepass2android-app/Resources/menu/group.xml
Normal file
77
src/keepass2android-app/Resources/menu/group.xml
Normal file
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin.
|
||||
|
||||
Keepass2Android is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Keepass2Android is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item android:id="@+id/menu_search"
|
||||
android:icon="@drawable/baseline_search_24"
|
||||
android:title="@string/menu_search"
|
||||
app:showAsAction="ifRoom"
|
||||
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
||||
/>
|
||||
<item android:id="@+id/menu_search_dummy"
|
||||
android:icon="@drawable/baseline_search_24"
|
||||
android:title="@string/menu_search"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_search_advanced"
|
||||
android:icon="@drawable/baseline_search_24"
|
||||
android:title="@string/menu_search_advanced"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
<item android:id="@+id/menu_lock"
|
||||
android:icon="@drawable/baseline_lock_24"
|
||||
android:title="@string/menu_lock"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_donate"
|
||||
android:icon="@drawable/donate_beer"
|
||||
android:title="@string/menu_donate"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_app_settings"
|
||||
android:icon="@drawable/baseline_settings_24"
|
||||
android:title="@string/menu_app_settings"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_sync"
|
||||
android:icon="@drawable/baseline_sync_24"
|
||||
android:title="@string/synchronize_database_menu"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
<item android:id="@+id/menu_work_offline"
|
||||
android:title="@string/UseOfflineMode"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
<item android:id="@+id/menu_work_online"
|
||||
android:title="@string/UseOnlineMode"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
|
||||
<item android:id="@+id/menu_sort"
|
||||
android:icon="@drawable/baseline_sort_24"
|
||||
android:title="@string/sort_menu"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
<item android:id="@+id/menu_open_other_db"
|
||||
android:title="@string/open_other_db"
|
||||
app:showAsAction="never"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
</menu>
|
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:id="@+id/menu_edit"
|
||||
android:icon="@drawable/baseline_edit_24"
|
||||
android:title="@string/menu_edit"
|
||||
android:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_delete"
|
||||
android:icon="@drawable/baseline_delete_24"
|
||||
android:title="@string/menu_delete"
|
||||
android:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_copy"
|
||||
android:icon="@drawable/baseline_content_copy_24"
|
||||
android:title="@string/menu_copy"
|
||||
android:showAsAction="always"
|
||||
/>
|
||||
|
||||
<item android:id="@+id/menu_move"
|
||||
android:icon="@drawable/baseline_content_cut_24"
|
||||
android:title="@string/menu_move"
|
||||
android:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_navigate"
|
||||
android:icon="@drawable/baseline_navigate_to_folder_24"
|
||||
android:title="@string/menu_navigate"
|
||||
android:showAsAction="always"
|
||||
/>
|
||||
|
||||
</menu>
|
11
src/keepass2android-app/Resources/menu/menu_entryedit.xml
Normal file
11
src/keepass2android-app/Resources/menu/menu_entryedit.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:myapp="http://schemas.android.com/apk/context-auto" >
|
||||
|
||||
<item
|
||||
android:id="@+id/action_search"
|
||||
android:orderInCategory="100"
|
||||
android:title="action_search"
|
||||
myapp:actionViewClass="androidx.appcompat.widget.SearchView"
|
||||
myapp:showAsAction="always" />
|
||||
</menu>
|
43
src/keepass2android-app/Resources/menu/menu_selectdb.xml
Normal file
43
src/keepass2android-app/Resources/menu/menu_selectdb.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is part of Keepass2Android, Copyright 2020 Philipp Crocoll.
|
||||
|
||||
Keepass2Android is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Keepass2Android is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Keepass2Android. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item android:id="@+id/menu_search_advanced"
|
||||
android:icon="@drawable/baseline_search_24"
|
||||
android:title="@string/menu_search_advanced"
|
||||
app:showAsAction="always"
|
||||
/>
|
||||
<item android:id="@+id/menu_lock"
|
||||
android:icon="@drawable/baseline_lock_24"
|
||||
android:title="@string/menu_lock"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_donate"
|
||||
android:icon="@drawable/donate_beer"
|
||||
android:title="@string/menu_donate"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
<item android:id="@+id/menu_app_settings"
|
||||
android:icon="@drawable/baseline_settings_24"
|
||||
android:title="@string/menu_app_settings"
|
||||
app:showAsAction="ifRoom"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
</menu>
|
Reference in New Issue
Block a user