Add menu
|
@ -9,3 +9,4 @@
|
|||
|
||||
# Project target.
|
||||
target=android-10
|
||||
android.library.reference.1=/storage/emulated/0/Download/JakeWharton-ActionBarSherlock-4.4.0-0-g4a79d53/JakeWharton-ActionBarSherlock-5a15d92/actionbarsherlock
|
After Width: | Height: | Size: 161 B |
After Width: | Height: | Size: 638 B |
After Width: | Height: | Size: 667 B |
After Width: | Height: | Size: 639 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 460 B |
After Width: | Height: | Size: 484 B |
After Width: | Height: | Size: 457 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 174 B |
After Width: | Height: | Size: 854 B |
After Width: | Height: | Size: 876 B |
After Width: | Height: | Size: 827 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 208 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 202 B |
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<!-- Search / will display always -->
|
||||
<item android:id="@+id/action_search"
|
||||
android:icon="@drawable/ic_action_search"
|
||||
android:title="@string/action_search"
|
||||
android:showAsAction="ifRoom"/>
|
||||
|
||||
<!-- Location Found -->
|
||||
<item android:id="@+id/action_location_found"
|
||||
android:icon="@drawable/ic_action_location_found"
|
||||
android:title="@string/action_location_found"
|
||||
android:showAsAction="ifRoom" />
|
||||
|
||||
<!-- Refresh -->
|
||||
<item android:id="@+id/action_refresh"
|
||||
android:icon="@drawable/ic_action_refresh"
|
||||
android:title="@string/action_refresh"
|
||||
android:showAsAction="ifRoom" />
|
||||
</menu>
|
|
@ -13,4 +13,7 @@
|
|||
<item>Footholds</item>
|
||||
<item>Online Shopping Info</item>
|
||||
</string-array>
|
||||
<string name="action_search">Search</string>
|
||||
<string name="action_location_found">Location</string>
|
||||
<string name="action_refresh">Refresh</string>
|
||||
</resources>
|
||||
|
|