2015-02-02 16:26:43 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Esmertec AG.
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<menu xmlns:yourapp="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<item android:id="@+id/menu_settings"
|
|
|
|
android:title="@string/menu_settings"
|
|
|
|
android:icon="@drawable/ic_action_settings"
|
|
|
|
yourapp:showAsAction="always"
|
|
|
|
/>
|
|
|
|
|
2015-03-28 04:39:58 +00:00
|
|
|
<item
|
|
|
|
android:title="@string/menu_qr"
|
|
|
|
yourapp:showAsAction="never"
|
|
|
|
>
|
|
|
|
<menu>
|
2015-02-23 17:27:49 +00:00
|
|
|
<item android:id="@+id/menu_scan"
|
|
|
|
android:title="@string/menu_scan"
|
2015-02-23 18:00:46 +00:00
|
|
|
yourapp:showAsAction="never"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<item android:id="@+id/menu_share_bridge"
|
|
|
|
android:title="@string/menu_share_bridge"
|
|
|
|
yourapp:showAsAction="never"
|
2015-02-23 17:27:49 +00:00
|
|
|
/>
|
2015-03-28 04:39:58 +00:00
|
|
|
</menu>
|
|
|
|
</item>
|
2015-02-23 18:00:46 +00:00
|
|
|
|
2015-02-02 16:26:43 +00:00
|
|
|
<!--
|
|
|
|
<item android:id="@+id/menu_verify"
|
|
|
|
android:title="@string/menu_verify_browser"
|
|
|
|
android:icon="@drawable/ic_action_browse"
|
|
|
|
yourapp:showAsAction="never"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
<item android:id="@+id/menu_vpn"
|
|
|
|
android:title="@string/menu_vpn"
|
|
|
|
yourapp:showAsAction="never"/>
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
2015-06-08 19:38:22 +00:00
|
|
|
<item android:id="@+id/menu_promo_apps"
|
|
|
|
android:title="@string/menu_promo_apps"
|
2015-02-02 16:26:43 +00:00
|
|
|
android:icon="@drawable/ic_menu_goto"
|
|
|
|
yourapp:showAsAction="never"
|
|
|
|
|
|
|
|
/>
|
2015-02-23 17:27:49 +00:00
|
|
|
|
|
|
|
<item android:id="@+id/menu_about"
|
|
|
|
android:title="@string/menu_about"
|
|
|
|
android:icon="@drawable/ic_menu_about"
|
|
|
|
yourapp:showAsAction="never"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
2015-02-02 16:26:43 +00:00
|
|
|
<item android:id="@+id/menu_exit"
|
|
|
|
android:title="@string/menu_exit"
|
|
|
|
android:icon="@drawable/ic_menu_exit"
|
|
|
|
yourapp:showAsAction="never"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</menu>
|