When a user flips their keyboard out or switches between portrait and landscape, the activity seemingly restarts. This is fine except I have my activity play music. When this occurs, there are then TWO music files playing, and pressing back only stops ONE of them! I've disabled switching between portrait and landscape for the activity, but sliding the keyboard out still causes the issue!
Android: Activity restarts on switch to landscape/keyboard flips out
732 views Asked by Joshua Coffey At
1
There are 1 answers
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in KEYBOARD
- On iOS, the keyboard does not offer a 6-character SMS code
- Using javaFx, how to distinguish between return-key and enter-key on the numpad?
- Way to adding emoji to textarea with keyboard, other than copy/paste
- Win32api send message and Pydirectinput and Powertoy (Keyboard Manager ) Not working when open the application
- Keyboard not appearing when connecting smart card reader to iPhones with type-c port. i.e. iPhone 15/ 15 pro
- Xamarin android emulate usb PC Keyboard
- Pygame response to superfast human key presses?
- Why am I getting keyboard letter repeats with Chrome and not Firefox?
- python keyboard libary problem with writhing too many characters
- Wordpress keyboard navigation
- is on keyboard one side alt is more prominent than other side while using them in shortcut keys
- Preserving TextField Input After Keyboard Dismissal in Flutter
- combine KeyCode pressed and modifiers to get final KeyCode
- Shadcn Drawer component with Inputs on mobile, keyboard hides inputs or shows a blank space hiding them
- Create an onscreen swipe keyboard for Mac
Related Questions in ANDROID-ACTIVITY
- Jetpack Compose how to reverse edge-to-edge when leaving composition
- In Android Studio, how make an item in the recyclerview open another activity when clicked?
- How to detect the Minimization of Custom Chrome Tabs on Android?
- Activity status in Node js
- setTaskDescription does not change the icon
- How to launch android activity in background, or minimized, when screen locked in Android 14 and start the activity with broadcast intent
- Window Manager cant create view
- Android AppWidget PendingIntent Activity Transition Animation
- How to clear intermediate activities in Android?
- How to add two activity in android studio using Kotlin?
- How to hide Android systembars & navigationbars without blocking floating widgets from being closable?
- Which Android component to use for orchestration (automatism)?
- onNewIntent() method called multiple times
- Google Files not respecting singleInstance launchMode
- Switch off noHistory="true" programmatically
Related Questions in LANDSCAPE
- Cracks in my automatic texture in Unreal engine 5
- How to I can use landscape mode it should cutoff to max phone width
- Navigating two times from landscape to portrait in iOS
- how to force landscape mode when iframe video in fullscreen
- Samsung Tablet. Show apps in landscape. Default value for app
- Navigating two times from landscape to portrait
- Unknown value while calculating land cover type buffer zones in ArcMap and r
- Landscape table with flextable in pdf and word output
- Print html table in ladscape mode
- How to get row/column header to print on each new page
- Header and footer not rendering properly in the PDF report's landscape page - jsreport
- How to change the orientation of the existing pages of the pdf report in the afterRender function in jsreport?
- Phaser3 how to force screen to open in landscape mode
- Importance of wrapping SwiftUI View in GeometryReader for landscape orientation
- Erreur dans stats::hclust(distance, "single") : il faut n >= 2 objets pour une classification
Related Questions in PORTRAIT
- Navigating two times from landscape to portrait in iOS
- Navigating two times from landscape to portrait
- Print preview trims data on edge/chrome in Portrait mode
- Delphi iOS uisupportedinterfaceorientations faill to transport
- Portrait Mode of video in android java
- Android NotificationCompat BigPictureStyle portrait image
- portrait / landscape Orientation notification
- How to convert Square image to landscape or portrait mode using PIL
- UIInterfaceOrientation not working on iPad iOS 16
- IsGestureEnabled is not working in xamarin forms for iOS 16
- Buildozer - Orientation Portrait setting not working
- How to implement a solution to change the orientation to landscape and vice versa
- IOS16 portrait rotate issue
- iOS 16 Scene orientation issue
- Android approach to handling landscape mode when portrait mode uses ViewPager2/TabLayout?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
FIrstly, check out the android:configurationChanged attribute. Secondly, the music playing is usually done by the service or the AsyncTask in simple cases. Try this two approaches.