
This implements live filtering in a SearchView so that it is easy to search for the apps you want to include in your Local Repo. This requires some newer stuff, so I switched it to the android-11 Activity until appcompat-v7 is included. All this functionality will work fine with appcompat-v7.
14 lines
468 B
XML
14 lines
468 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:icon="@android:drawable/ic_menu_search"
|
|
android:showAsAction="ifRoom"
|
|
android:title="@string/menu_search"/>
|
|
<item
|
|
android:id="@+id/action_update_repo"
|
|
android:icon="@android:drawable/ic_input_add"
|
|
android:showAsAction="ifRoom|withText"
|
|
android:title="@string/update_repo"/>
|
|
|
|
</menu> |