Created
April 6, 2013 17:14
-
-
Save NikolaKirev/5326845 to your computer and use it in GitHub Desktop.
Android Tutorial: Adding buttons in the action bar part1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<menu xmlns:android="http://schemas.android.com/apk/res/android" > | |
<item | |
android:id="@+id/itemAdd" | |
android:icon="@drawable/add" | |
android:showAsAction="ifRoom|withText" | |
android:title="@string/btnAdd"> | |
</item> | |
<item | |
android:id="@+id/itemRefresh" | |
android:icon="@drawable/refresh" | |
android:showAsAction="ifRoom|withText" | |
android:title="@string/btnRefresh"> | |
</item> | |
<item | |
android:id="@+id/itemHelp" | |
android:title="@string/btnHelp"> | |
</item> | |
</menu> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment