Tom Willemsen
b2a1b4aec0
* AndroidManifest.xml: Register `DVDroidActivity' as searchable. * res/drawable-hdpi/menu_search.png: * res/drawable-mdpi/menu_search.png: New icons. * res/menu/main_activity.xml: Add a search icon to the main activity's action menu. * res/values/strings.xml: Add strings "search_hint" and "menu_search". * res/xml/searchable.xml: New configuration file. * src/ryuslash/org/dvdroid/DVDDataSource.java (getQuery): New function. * src/ryuslash/org/dvdroid/DVDroidActivity.java (getData): New overload, calls `getQuery' to search for something instead of everything. (onCreate): If a search has been started, search, don't just show everything. (onCreateOptionsMenu): Instantiate the `SearchView' in order to use it.
12 lines
533 B
XML
12 lines
533 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:id="@+id/main_menu_add"
|
|
android:title="@string/main_menu_add"
|
|
android:showAsAction="ifRoom|withText"
|
|
android:icon="@drawable/add" />
|
|
<item android:id="@+id/menu_search"
|
|
android:title="@string/menu_search"
|
|
android:icon="@drawable/menu_search"
|
|
android:showAsAction="collapseActionView|ifRoom"
|
|
android:actionViewClass="android.widget.SearchView" />
|
|
</menu>
|