Skip to content

Commit

Permalink
Merge pull request #3901 from TeamAmaze/bugfix/3900
Browse files Browse the repository at this point in the history
Correct class cast at color selection dialog
  • Loading branch information
VishalNehra authored Aug 12, 2023
2 parents 37db3ba + 732e9c5 commit 671d0df
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@

import androidx.annotation.NonNull;
import androidx.annotation.StringRes;
import androidx.appcompat.widget.AppCompatButton;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.core.util.Pair;
import androidx.preference.Preference.BaseSavedState;
Expand Down Expand Up @@ -249,9 +250,9 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
((UserColorPreferences) requireArguments().getParcelable(ARG_COLOR_PREF)).getAccent();

// Button views
((AppCompatTextView) dialog.findViewById(res.getIdentifier("button1", "id", "android")))
((AppCompatButton) dialog.findViewById(res.getIdentifier("button1", "id", "android")))
.setTextColor(accentColor);
((AppCompatTextView) dialog.findViewById(res.getIdentifier("button2", "id", "android")))
((AppCompatButton) dialog.findViewById(res.getIdentifier("button2", "id", "android")))
.setTextColor(accentColor);

return dialog;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
* Copyright (C) 2014-2023 Arpit Khurana <[email protected]>, Vishal Nehra <[email protected]>,
* Emmanuel Messulam<[email protected]>, Raymond Lai <airwave209gt at gmail.com> and Contributors.
*
* This file is part of Amaze File Manager.
*
* Amaze File Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.amaze.filemanager.ui.dialogs

import android.os.Build.VERSION_CODES
import android.os.Build.VERSION_CODES.KITKAT
import android.os.Build.VERSION_CODES.P
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.amaze.filemanager.application.AppConfig
import com.amaze.filemanager.shadows.ShadowMultiDex
import com.amaze.filemanager.test.ShadowTabHandler
import com.amaze.filemanager.ui.colors.ColorPreferenceHelper
import com.amaze.filemanager.ui.fragments.preferencefragments.PreferencesConstants
import com.amaze.filemanager.ui.theme.AppTheme
import org.junit.Assert.assertNotNull
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.annotation.Config

/**
* Tests for [ColorPickerDialog].
*/
@RunWith(AndroidJUnit4::class)
@Config(
shadows = [ShadowMultiDex::class, ShadowTabHandler::class],
sdk = [KITKAT, P, VERSION_CODES.R]
)
class ColorPickerDialogTest {

/**
* Tests [ColorPickerDialog.onCreateDialog] as sanity check.
*/
@Test
fun testCreateDialog() {
val dialog = ColorPickerDialog.newInstance(
PreferencesConstants.PRESELECTED_CONFIGS,
ColorPreferenceHelper.randomize(AppConfig.getInstance()),
AppTheme.SYSTEM
)
assertNotNull(dialog)
}
}

0 comments on commit 671d0df

Please sign in to comment.