| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2011 Google Inc. | |
| 3 | |
| 4 Use of this source code is governed by a BSD-style license that can be | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 | |
| 8 <menu xmlns:android="http://schemas.android.com/apk/res/android"> | |
| 9 <item | |
| 10 android:id="@+id/fps" | |
| 11 android:title="@string/fps" | |
| 12 android:showAsAction="ifRoom" | |
| 13 /> | |
| 14 <item | |
| 15 android:id="@+id/toggle_rendering" | |
| 16 android:title="@string/toggle_rendering" | |
| 17 android:showAsAction="ifRoom" | |
| 18 /> | |
| 19 <item | |
| 20 android:id="@+id/prev" | |
| 21 android:showAsAction="always" | |
| 22 android:icon="@drawable/ic_btn_find_prev" | |
| 23 /> | |
| 24 <item | |
| 25 android:id="@+id/next" | |
| 26 android:showAsAction="always" | |
| 27 android:icon="@drawable/ic_btn_find_next" | |
| 28 /> | |
| 29 <item | |
| 30 android:id="@+id/overview" | |
| 31 android:title="@string/overview" | |
| 32 /> | |
| 33 <item | |
| 34 android:id="@+id/slideshow" | |
| 35 android:title="@string/slideshow" | |
| 36 /> | |
| 37 <item | |
| 38 android:id="@+id/tiling" | |
| 39 android:title="@string/tiling" | |
| 40 /> | |
| 41 <item | |
| 42 android:id="@+id/bbox" | |
| 43 android:title="@string/bbox" | |
| 44 /> | |
| 45 <item | |
| 46 android:id="@+id/glcontext_menu" | |
| 47 android:title="@string/glcontext_menu"> | |
| 48 <menu> | |
| 49 <item | |
| 50 android:id="@+id/glcontext_opengles" | |
| 51 android:title="@string/glcontext_opengles" | |
| 52 android:checkable="true" | |
| 53 /> | |
| 54 <item | |
| 55 android:id="@+id/glcontext_msaa4_opengles" | |
| 56 android:title="@string/glcontext_msaa4_opengles" | |
| 57 android:checkable="true" | |
| 58 /> | |
| 59 <item | |
| 60 android:id="@+id/glcontext_opengl" | |
| 61 android:title="@string/glcontext_opengl" | |
| 62 android:checkable="true" | |
| 63 /> | |
| 64 <item | |
| 65 android:id="@+id/glcontext_msaa4_opengl" | |
| 66 android:title="@string/glcontext_msaa4_opengl" | |
| 67 android:checkable="true" | |
| 68 /> | |
| 69 </menu> | |
| 70 </item> | |
| 71 <item | |
| 72 android:id="@+id/save_to_pdf" | |
| 73 android:title="@string/save_to_pdf" | |
| 74 /> | |
| 75 </menu> | |
| OLD | NEW |