@@ -208,8 +208,8 @@ public void fabClicked(View view) {
208208 final AlertDialog .Builder builder = new AlertDialog .Builder (getContext ());
209209 builder .setTitle (getResources ().getString (R .string .create_new ));
210210 builder .setView (newItemView );
211- builder .setPositiveButton (android . R .string .ok , null );
212- builder .setNegativeButton (android . R .string .cancel , null );
211+ builder .setPositiveButton (R .string .ok , null );
212+ builder .setNegativeButton (R .string .cancel , null );
213213
214214 final AlertDialog alertDialog = builder .create ();
215215 alertDialog .getWindow ().setSoftInputMode (WindowManager .LayoutParams .SOFT_INPUT_STATE_ALWAYS_VISIBLE );
@@ -345,8 +345,8 @@ private void displayRenameDialog() {
345345 final AlertDialog .Builder builder = new AlertDialog .Builder (getContext ());
346346 builder .setTitle (getResources ().getString (renameString ));
347347 builder .setView (renameView );
348- builder .setPositiveButton (android . R .string .ok , null );
349- builder .setNegativeButton (android . R .string .cancel , null );
348+ builder .setPositiveButton (R .string .ok , null );
349+ builder .setNegativeButton (R .string .cancel , null );
350350
351351 final AlertDialog alertDialog = builder .create ();
352352 alertDialog .getWindow ().setSoftInputMode (WindowManager .LayoutParams .SOFT_INPUT_STATE_ALWAYS_VISIBLE );
@@ -394,8 +394,8 @@ private void displayCopyDialog() {
394394 final AlertDialog .Builder builder = new AlertDialog .Builder (getContext ());
395395 builder .setTitle (getResources ().getString (copyString ));
396396 builder .setView (copyView );
397- builder .setPositiveButton (android . R .string .ok , null );
398- builder .setNegativeButton (android . R .string .cancel , null );
397+ builder .setPositiveButton (R .string .ok , null );
398+ builder .setNegativeButton (R .string .cancel , null );
399399
400400 mCopyDialog = builder .create ();
401401 mCopyDialog .show ();
@@ -510,8 +510,8 @@ public void breadcrumbClicked(int id) {
510510 final AlertDialog .Builder builder = new AlertDialog .Builder (getContext ());
511511 builder .setTitle (getResources ().getString (R .string .select_destination ));
512512 builder .setView (pickerView );
513- builder .setPositiveButton (android . R .string .ok , null );
514- builder .setNegativeButton (android . R .string .cancel , null );
513+ builder .setPositiveButton (R .string .ok , null );
514+ builder .setNegativeButton (R .string .cancel , null );
515515
516516 final AlertDialog alertDialog = builder .create ();
517517 alertDialog .show ();
0 commit comments