2014-07-10 19:41:09 -04:00
|
|
|
<?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_update_repo"
|
2015-05-11 23:04:33 +10:00
|
|
|
android:icon="@drawable/ic_refresh_white"
|
2014-07-10 19:41:09 -04:00
|
|
|
android:title="@string/menu_update_repo"
|
|
|
|
app:showAsAction="always|withText"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_add_repo"
|
2015-05-11 23:04:33 +10:00
|
|
|
android:icon="@drawable/ic_add_white"
|
2014-07-10 19:41:09 -04:00
|
|
|
android:title="@string/menu_add_repo"
|
|
|
|
app:showAsAction="always|withText"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_find_local_repos"
|
|
|
|
android:title="@string/menu_scan_repo"
|
|
|
|
app:showAsAction="ifRoom|withText"/>
|
|
|
|
|
|
|
|
</menu>
|