add button tinting

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2020-12-07 11:59:24 +01:00
parent 975841735b
commit 1d35868f51
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -296,12 +296,15 @@ public class FileDisplayActivity extends FileActivity
MainApp.setStoragePath(newStorage);
try {
new AlertDialog.Builder(this, R.style.Theme_ownCloud_Dialog)
AlertDialog alertDialog = new AlertDialog.Builder(this, R.style.Theme_ownCloud_Dialog)
.setTitle(R.string.wrong_storage_path)
.setMessage(R.string.wrong_storage_path_desc)
.setNegativeButton(R.string.dialog_close, (dialog, which) -> dialog.dismiss())
.setIcon(R.drawable.ic_settings)
.show();
.create();
alertDialog.show();
alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(ThemeUtils.primaryAccentColor(this));
} catch (WindowManager.BadTokenException e) {
Log_OC.e(TAG, "Error showing wrong storage info, so skipping it: " + e.getMessage());
}