mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	Add else and negativeButton
This commit is contained in:
		
							parent
							
								
									61bf77b695
								
							
						
					
					
						commit
						60da5dc37a
					
				
					 1 changed files with 9 additions and 4 deletions
				
			
		|  | @ -519,6 +519,9 @@ public class CategorizationFragment extends Fragment { | |||
|                     } | ||||
|                 } | ||||
| 
 | ||||
|                 //Need to reassign to a final variable to use in inner class | ||||
|                 final ArrayList<String> finalCategories = selectedCategories; | ||||
| 
 | ||||
|                 //If no categories selected, display warning to user | ||||
|                 if (numberSelected == 0) { | ||||
|                     AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); | ||||
|  | @ -527,21 +530,23 @@ public class CategorizationFragment extends Fragment { | |||
|                             .setTitle("No Categories Selected"); | ||||
|                     builder.setPositiveButton("No", new DialogInterface.OnClickListener() { | ||||
|                         public void onClick(DialogInterface dialog, int id) { | ||||
|                             //Exit menuItem | ||||
|                             //Exit menuItem so user can select their categories | ||||
|                             return; | ||||
|                         } | ||||
|                     }); | ||||
|                     builder.setNegativeButton("Yes", new DialogInterface.OnClickListener() { | ||||
|                         public void onClick(DialogInterface dialog, int id) { | ||||
|                             //Proceed | ||||
|                             //Proceed to submission | ||||
|                             onCategoriesSaveHandler.onCategoriesSave(finalCategories); | ||||
|                             return; | ||||
|                         } | ||||
|                     }); | ||||
| 
 | ||||
|                     AlertDialog dialog = builder.create(); | ||||
|                     dialog.show(); | ||||
|                 } else { | ||||
| 
 | ||||
|                     onCategoriesSaveHandler.onCategoriesSave(selectedCategories); | ||||
|                     //Proceed to submission | ||||
|                     onCategoriesSaveHandler.onCategoriesSave(finalCategories); | ||||
|                     return true; | ||||
|                 } | ||||
|         } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 misaochan
						misaochan