Skip to content

Commit cfa6d41

Browse files
LylaAsser
authored andcommitted
Fix issue #76
1 parent 7676499 commit cfa6d41

File tree

2 files changed

+2
-2
lines changed
  • Lesson06-Visualizer-Preferences

2 files changed

+2
-2
lines changed

Lesson06-Visualizer-Preferences/T06.01-Exercise-SetupTheActivity/app/src/main/java/android/example/com/visualizerpreferences/VisualizerActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void onRequestPermissionsResult(int requestCode,
120120

121121
// TODO (2) Add a new resource folder called menu and create visualizer_menu.xml
122122
// TODO (3) In visualizer_menu.xml create a menu item with a single item. The id should be
123-
// action_settings, the id and title should be saved in strings.xml, the item should never
123+
// "action_settings", title should be saved in strings.xml, the item should never
124124
// be shown as an action, and orderInCategory should be 100
125125

126126
// TODO (5) Add the menu to the menu bar

Lesson06-Visualizer-Preferences/T06.01-Solution-SetupTheActivity/app/src/main/res/menu/visualizer_menu.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- COMPLETED (2) Add a new resource folder called menu and create visualizer_menu.xml -->
33
<!-- COMPLETED (3) In visualizer_menu.xml create a menu item with a single item. The id should be
4-
action_settings, the id and title should be saved in strings.xml, the item should never
4+
"action_settings", title should be saved in strings.xml, the item should never
55
be shown as an action, and orderInCategory should be 100 -->
66
<menu xmlns:android="http://schemas.android.com/apk/res/android"
77
xmlns:app="http://schemas.android.com/apk/res-auto">

0 commit comments

Comments
 (0)