Preguntas etiquetadas con orientation

La orientación es el camino hacia arriba, hacia abajo, hacia la izquierda o hacia la derecha hacia arriba o hacia la derecha en el que se encuentra o se sostiene algo. Normalmente, se distingue entre las orientaciones Retrato (o Vertical) y Paisaje (u Horizontal).


11
Forzar el modo de orientación "vertical"
Estoy tratando de forzar el modo "vertical" para mi aplicación porque mi aplicación no está diseñada para el modo "horizontal". Después de leer algunos foros, agregué estas líneas en mi archivo de manifiesto: <application android:debuggable="true" android:icon="@drawable/icon" android:label="@string/app_name" android:screenOrientation="portrait"> Pero no funciona en mi dispositivo (HTC Desire). Cambia de "retrato" a …


9
¿Cómo puedo obtener la orientación actual de la pantalla?
Solo quiero establecer algunas banderas cuando mi orientación es horizontal para que cuando se recrea la actividad en onCreate () pueda alternar entre qué cargar en vertical frente a horizontal. Ya tengo un xml de layout-land que maneja mi diseño. public void onConfigurationChanged(Configuration _newConfig) { if (_newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) { …

18
¿Es [UIScreen mainScreen] .bounds.size dependiente de la orientación en iOS8?
Ejecuté el siguiente código tanto en iOS 7 como en iOS 8: UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; BOOL landscape = (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight); NSLog(@"Currently landscape: %@, width: %.2f, height: %.2f", (landscape ? @"Yes" : @"No"), [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height); El siguiente es el …










15
Problema de orientación de la cámara en Android
Estoy creando una aplicación que usa la cámara para tomar fotografías. Aquí está mi código fuente para hacer esto: File file = new File(Environment.getExternalStorageDirectory(), imageFileName); imageFilePath = file.getPath(); Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); //Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file)); startActivityForResult(intent, ACTIVITY_NATIVE_CAMERA_AQUIRE); En el onActivityResult()método, utilizo BitmapFactory.decodeStream()para recoger la imagen. …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.