mirror of
				https://github.com/libsdl-org/SDL.git
				synced 2025-11-04 01:34:38 +00:00 
			
		
		
		
	Android: orientation, check for exact match to "Portrait". (see #6959)
(Portrait is also contained in PortraitUpsideDown)
This commit is contained in:
		@@ -977,9 +977,12 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
 | 
			
		||||
            orientation_landscape = ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (hint.contains("Portrait") && hint.contains("PortraitUpsideDown")) {
 | 
			
		||||
        /* exact match to 'Portrait' to distinguish with PortraitUpsideDown */
 | 
			
		||||
        boolean contains_Portrait = hint.contains("Portrait ") || hint.endsWith("Portrait");
 | 
			
		||||
 | 
			
		||||
        if (contains_Portrait && hint.contains("PortraitUpsideDown")) {
 | 
			
		||||
            orientation_portrait = ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT;
 | 
			
		||||
        } else if (hint.contains("Portrait")) {
 | 
			
		||||
        } else if (contains_Portrait) {
 | 
			
		||||
            orientation_portrait = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
 | 
			
		||||
        } else if (hint.contains("PortraitUpsideDown")) {
 | 
			
		||||
            orientation_portrait = ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user