summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java/org
AgeCommit message (Collapse)Author
2020-10-18Android: ConfirmRunnable to RunRunnable with optional confirmationRyan Meredith
2020-10-15Merge pull request #9144 from JosJuice/confirm-runnable-finishJosJuice
Android: Remove finish from ConfirmRunnableViewHolder
2020-10-14Merge pull request #9119 from JosJuice/android-seekbar-minLéo Lam
Android: Correct SliderSetting minimum value behavior on API < 26
2020-10-14Merge pull request #9135 from JosJuice/show-nkitLéo Lam
Show NKitness in file format string
2020-10-13Android: Fix setting read during play with local game layer activeJosJuice
During emulation, when LocalGame has a value but CurrentRun doesn't, we want to read from LocalGame, not CurrentRun. This change exposes a LAYER_ACTIVE option that handles this correctly.
2020-10-11Android: Remove finish from ConfirmRunnableViewHolderJosJuice
2020-10-10Merge pull request #8833 from Ebola16/PanicJosJuice
Android: Use DialogFragment for AlertMessage
2020-10-06Show NKitness in file format stringJosJuice
To make people more aware that they're not using a normal disc image.
2020-10-06Use Instant in StartupHandler.Isira Seneviratne
2020-10-01Android: Correct SliderSetting minimum value behavior on API < 26JosJuice
2020-09-26Android: seekbar.setMin requires API level 26Ryan Meredith
2020-09-25Android: Add "Ignore for this session" to Warning AlertMessagesRyan Meredith
2020-09-25Android: Use DialogFragment for AlertMessageRyan Meredith
2020-09-23Android: Use storage access framework for importing WADsJosJuice
This is part of my efforts to add support for scoped storage. I figured I would start with a relatively simple feature to make sure that everyone is fine with the approach I'm taking before I tackle more complicated features like the game list.
2020-09-23Merge pull request #8902 from JosJuice/android-convertJMC47
Android: Add disc image conversion
2020-09-22Merge pull request #9088 from JosJuice/android-sysconfJMC47
Android: Add Wii SYSCONF settings to GUI
2020-09-16Merge pull request #9075 from JosJuice/android-osd-left-marginJMC47
Android: Move OSD out of the way when menu is open
2020-09-16Merge pull request #9077 from JosJuice/android-settings-initializedJMC47
Android: Wait for initialization before launching EmulationActivity
2020-09-16Android: Add workaround for conversion progress in dark modeJosJuice
2020-09-16Android: Only allow conversion when appropriateJosJuice
2020-09-16Android: Refactor GamePropertiesDialog.onCreateDialogJosJuice
2020-09-16Android: Pass GameFile to GamePropertiesDialog::newInstanceJosJuice
2020-09-16Android: Let the user select where to save disc imagesJosJuice
2020-09-16Android: Add content provider support to File::DeleteJosJuice
2020-09-16Android: Add content provider support to File::IOFileJosJuice
Taking the hit now to prepare us for when Google Play will force us to use scoped storage...
2020-09-16Android: Add a progress dialog for disc image conversionJosJuice
2020-09-16Android: Add disc image conversionJosJuice
2020-09-16Android: Move OSD out of the way when menu is openJosJuice
https://bugs.dolphin-emu.org/issues/12256
2020-09-16Android: Add Wii SYSCONF settings to GUIJosJuice
Now that PR 8975 is merged, we can finally add this without hacks. https://bugs.dolphin-emu.org/issues/11605
2020-09-16Android: Don't assume SliderSetting minimum is 0JosJuice
2020-09-16Merge pull request #8975 from JosJuice/android-new-configJosJuice
Android: Hook up the new config system
2020-09-15Android: Display default path when no path is setJosJuice
2020-09-15Android: Allow editing settings during emulationJosJuice
2020-09-15Android: Show overridden game settings in boldJosJuice
2020-09-15Android: Hook up game settings to the new config systemJosJuice
2020-09-15Android: Hook up global settings to the new config systemJosJuice
2020-09-14Android: Fix touch pointer not working after activity recreationJosJuice
The only place where initTouchPointer was called automatically was Host_RequestRenderWindowSize, which is called at least once after emulation start, but not after activity recreation.
2020-09-13Android: Improve WRITE_EXTERNAL_STORAGE denialRyan Meredith
2020-09-13Android: Check for granted permission when returning to MainActivityJosJuice
2020-09-12Android: Centralize default values for settingsJosJuice
I was hoping we would be able to pull in the default values from C++, but it seems like more trouble than it's worth, partially because of different settings having default values of different types and partially because we don't have any convenient way to get a list of all C++ settings.
2020-09-12Android: Centralize setting definitionsJosJuice
Except controller settings, because those would be annoying to fit into the same system, and I only need the non-controller settings to be brought over for the next commits to work.
2020-09-12Android: Wait for initialization before launching EmulationActivityJosJuice
...instead of waiting for it after launching EmulationActivity. We need this because there is code that runs very early in EmulationActivity that accesses the settings.
2020-09-08Android: Always show Exit Emulation at bottom of menuJosJuice
To make it easier to access on touchscreens.
2020-09-08Android: Remove redundant pause/unpause codeJosJuice
2020-09-08Android: Exit emulation by long pressing BackJosJuice
2020-09-08Android: Hide Refresh Wii Remotes menu entry for GameCube gamesJosJuice
2020-09-08Android: Port over settings from the old menuJosJuice
2020-09-08Android: Close the menu when tapping outside of itJosJuice
2020-09-08Android: Don't hide the menu when pressing ExitJosJuice
Removing the menu for a split second before showing the transition back to the main activity looks janky.
2020-09-08Android: Remove inappropriate leanback checksJosJuice
Android TV devices aren't the only devices without touchscreens. Regarding MotionAlertDialog, I could've replaced the leanback check with a touchscreen check instead of just removing it, but I thought there was no reason to prevent people with touchscreens from doing a long back press if they want to.