
That makes that repo automatically ready for use based on user actions like adding a new repo, switching an existing repo on, etc. This also lowers the priority of the "update" menu item since it shouldn't be needed any more. But leave it for now, just in case.
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" >
|
|
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:icon="@drawable/ic_search_white"
|
|
android:title="@string/menu_search"
|
|
app:showAsAction="always"/>
|
|
<item
|
|
android:id="@+id/action_swap"
|
|
android:title="@string/swap"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/action_manage_repos"
|
|
android:icon="@drawable/ic_toc_white"
|
|
android:title="@string/menu_manage"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/action_bluetooth_apk"
|
|
android:icon="@drawable/ic_bluetooth_white"
|
|
android:title="@string/menu_send_apk_bt"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/action_update_repo"
|
|
android:icon="@drawable/ic_refresh_white"
|
|
android:title="@string/menu_update_repo"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/action_settings"
|
|
android:icon="@drawable/ic_settings_white"
|
|
android:title="@string/menu_preferences"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/action_about"
|
|
android:icon="@drawable/ic_help_white"
|
|
android:title="@string/menu_about"
|
|
app:showAsAction="ifRoom"/>
|
|
|
|
</menu>
|