AndroidStudio (kotlin) 화면 회전 fullSensor 거동
3397 단어 AndroidStudioKotlin
하고 싶은 일
AndroidStudio에서 프로젝트를 새로 만들 때 기본값
새로 만들 때 생성되는 매니페스트는
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.yamato200608b">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
이다.
이 시점에서는
android:screenOrientation=""
의 기술이 없다.
screenOrientation으로 설정
<activity android:name=".MainActivity">
에 추가한다.
fullSensor
붉은 〇는 카메라의 위치. 회전에 따라 디스플레이 방향이 최적화됩니다.
<activity android:name=".MainActivity" android:screenOrientation="fullSensor">
portrait
<activity android:name=".MainActivity" android:screenOrientation="portrait">
회전하더라도 디스플레이는 세로(단방향)로 고정됩니다.
Reference
이 문제에 관하여(AndroidStudio (kotlin) 화면 회전 fullSensor 거동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kenichiro-yamato/items/a2bd351c0b75ad69b5e1
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.yamato200608b">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
android:screenOrientation=""
<activity android:name=".MainActivity">
에 추가한다.
fullSensor
붉은 〇는 카메라의 위치. 회전에 따라 디스플레이 방향이 최적화됩니다.
<activity android:name=".MainActivity" android:screenOrientation="fullSensor">
portrait
<activity android:name=".MainActivity" android:screenOrientation="portrait">
회전하더라도 디스플레이는 세로(단방향)로 고정됩니다.
Reference
이 문제에 관하여(AndroidStudio (kotlin) 화면 회전 fullSensor 거동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kenichiro-yamato/items/a2bd351c0b75ad69b5e1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)