You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 19, 2018. It is now read-only.
the issue don't reproduce on any otyher device I got, including GT-S583i 2.3.6 or terminal with 4.x
My app got one activity and various fragment. (the Navigation change the current fragment)
Manifest:
- I do NOT use "android:configChanges=" in the manifest
<application
android:theme="@style/Theme.Sherlock.Light" >
<activity
android:name=".MainActivity"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Code:
public class MainActivity extends SherlockFragmentActivity {
/**called by the onResume of the fragment.*/
public void onCurrentFragmentChange(BaseDelegate currentFrag){
// depending the fragment/terminal, the activity may rotate or not.
setRequestedOrientation(currentFrag.getRequestedScreenOrientation());
actionbar_loadNavigationList(currentFrag); // call _mActionBar.setListNavigationCallbacks(null or adapter)
updateActionBar(currentFrag, currentFrag.isOrientationLandscape()); // call _mActionBar.setNavigationMode(list for portrait, none for landscape); invalidateOptionsMenu() and _mActionBar.setTitle()
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Steps:
Observed :
expected:
Workaround tested:
Config:
Manifest:
Code:
The text was updated successfully, but these errors were encountered: