Relative Content

Tag Archive for javaandroid

Android Studio won’t recognize my current jdk version

I continue to get a “enhance switch block is not supported by language ‘8’” message even after upgrading to Java 22. Searches for solutions only lead to fixes for much older versions of Android Studio that don’t match my settings (I’m using 2024 Koala). Is it a problem with a missing or incorrect PATH?

how to go to the same fragment of an activity from another acitivity while returning?

I created an activity as mainActivity and create navigation bar to navigate to other 4 distinct screen or fragment. In one of the fragment name settingFragment, i created a change language button which help to intent to another activity(languageActivity) but when i return back to main activity from languageActivity with back button it redirect me to homeFragment instead of settingFragment where i left. Is there a block code i am missing to happen that…