File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Check this [project on Behance] (https://www.behance.net/gallery/20411445/Mobile
1919#### 2. Create list of ` MenuObject ` , which consists of icon or icon and description.
2020
2121```
22- ArrayList<MenuObject> menuObjects = new ArrayList<>();
22+ ArrayList<MenuObject> menuObjects = new ArrayList<>();
2323 menuObjects.add(new MenuObject(R.drawable.icn_close));
2424 menuObjects.add(new MenuObject(R.drawable.icn_1, "Send message"));
2525 menuObjects.add(new MenuObject(R.drawable.icn_2, "Like profile"));
@@ -37,7 +37,7 @@ ArrayList<MenuObject> menuObjects = new ArrayList<>();
3737#### 4. Set menu with button, which will open ` ContextMenuDialogFragment ` .
3838
3939```
40- @Override
40+ @Override
4141 public boolean onCreateOptionsMenu(final Menu menu) {
4242 MenuInflater inflater = getMenuInflater();
4343 inflater.inflate(R.menu.menu_main, menu);
You can’t perform that action at this time.
0 commit comments