“Android Deaktivieren Sie den Landschaftsmodus” Code-Antworten

Android Deaktivieren Sie den Landschaftsmodus

<activity android:name=".SomeActivity"
    android:label="@string/app_name"
    android:screenOrientation="portrait" />
Slashcode

Deaktivieren Sie den Porträtmodus Android

// add this in your manifest.xml 

<activity
        android:name=".MainActivity"
		<...other code>
        android:configChanges="orientation"    //<--ADD THIS
        android:screenOrientation="portrait">  //<--ADD THIS
Harpreet_Singh

Ähnliche Antworten wie “Android Deaktivieren Sie den Landschaftsmodus”

Fragen ähnlich wie “Android Deaktivieren Sie den Landschaftsmodus”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen