Advertisement
Guest User

menu_main.xml

a guest
Jan 23rd, 2017
11,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <menu xmlns:android="http://schemas.android.com/apk/res/android"
  3.       xmlns:app="http://schemas.android.com/apk/res-auto"
  4.       xmlns:tools="http://schemas.android.com/tools"
  5.       tools:context="com.okedroid.mysimplebrowser.MainActivity">
  6.  
  7.  
  8.     <item
  9.         android:id="@+id/action_settings"
  10.         android:orderInCategory="100"
  11.         android:title="@string/action_settings"
  12.         app:showAsAction="never"/>
  13.  
  14.     <item
  15.         android:id="@+id/tombol_refresh"
  16.         android:title="@string/refresh"
  17.         />
  18.  
  19.     <item
  20.         android:id="@+id/tombol_stop"
  21.         android:title="@string/stop"/>
  22.  
  23.     <item
  24.         android:id="@+id/tombol_goback"
  25.         android:title="@string/goback"/>
  26.  
  27.     <item
  28.         android:id="@+id/tombol_gofoward"
  29.         android:title="@string/forward"/>
  30.  
  31. </menu>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement