BobStore/F-Droid/res/menu/manage_repos.xml
Daniel Martí 81db276f8d Avoid showAsAction=always whenever possible
In AppDetails, work around it by using ifRoom and placing that button
first so that it gets preference. The rest aren't affected at all.
2015-11-01 20:06:17 +01:00

17 lines
560 B
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_update_repo"
android:icon="@drawable/ic_refresh_white"
android:title="@string/menu_update_repo"
app:showAsAction="ifRoom|withText"/>
<item
android:id="@+id/action_add_repo"
android:icon="@drawable/ic_add_white"
android:title="@string/menu_add_repo"
app:showAsAction="ifRoom|withText"/>
</menu>