Risposte:
Nel manifest, impostalo per tutte le tue attività:
<activity android:name=".YourActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
Lasciatemi spiegare:
android:configChanges="orientation"
te dici ad Android che sarai responsabile dei cambiamenti di orientamento.android:screenOrientation="portrait"
si imposta la modalità di orientamento predefinita.android:screenOrientation="portrait"
PortraitActivity
e in onCreate call setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)
Tutte le attività che si estendono non ruotano
Activity
, come un'attività si estende da ListActivity
mentre altre si estendono semplicemente da Activity
?
Nel file manifest Android, inserisci l'attributo per <activity>
quelloandroid:screenOrientation="portrait"
Ci sono due modi,
android:screenOrientation="portrait"
per ogni attività nel file manifestthis.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
in ogni file Java.nel manifest:
<activity android:name=".activity.MainActivity"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
oppure: in MainActivity
@SuppressLint("SourceLockedOrientationActivity")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
app/src/main/AndroidManifest.xml; lineNumber: 20; columnNumber: 50; The prefix "tools" for attribute "tools:ignore" associated with an element type "activity" is not bound.
. L'aggiunta xmlns:tools="http://schemas.android.com/tools"
dell'elemento radice risolve il problema
Vecchio post lo so. Al fine di eseguire la tua app sempre in modalità verticale anche quando l'orientamento può essere o viene scambiato ecc. (Ad esempio su tablet) ho progettato questa funzione che viene utilizzata per impostare il dispositivo con l'orientamento corretto senza la necessità di sapere come ritratto e paesaggio le funzionalità sono organizzate sul dispositivo.
private void initActivityScreenOrientPortrait()
{
// Avoid screen rotations (use the manifests android:screenOrientation setting)
// Set this to nosensor or potrait
// Set window fullscreen
this.activity.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
DisplayMetrics metrics = new DisplayMetrics();
this.activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
// Test if it is VISUAL in portrait mode by simply checking it's size
boolean bIsVisualPortrait = ( metrics.heightPixels >= metrics.widthPixels );
if( !bIsVisualPortrait )
{
// Swap the orientation to match the VISUAL portrait mode
if( this.activity.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT )
{ this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); }
else { this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT ); }
}
else { this.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR); }
}
Funziona come un fascino!
AVVISO: modifica in this.activity
base alla tua attività o aggiungilo all'attività principale e rimuovi this.activity
;-)
Io uso
android:screenOrientation="nosensor"
È utile se non si desidera supportare la modalità verticale capovolta.