ฉันต้องการให้แอปพลิเคชัน Android ของฉันทำงานในโหมดแนวตั้งเท่านั้น ฉันจะทำสิ่งนั้นได้อย่างไร
ฉันต้องการให้แอปพลิเคชัน Android ของฉันทำงานในโหมดแนวตั้งเท่านั้น ฉันจะทำสิ่งนั้นได้อย่างไร
คำตอบ:
ในรายการให้ตั้งค่านี้สำหรับกิจกรรมทั้งหมดของคุณ:
<activity android:name=".YourActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
ให้ฉันอธิบาย:
android:configChanges="orientation"
คุณบอก Android ว่าคุณจะต้องรับผิดชอบต่อการเปลี่ยนแปลงของการปฐมนิเทศandroid:screenOrientation="portrait"
คุณตั้งค่าโหมดการวางแนวเริ่มต้นandroid:screenOrientation="portrait"
PortraitActivity
และในการโทรแบบsetRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)
Activity
เช่นกิจกรรมหนึ่งยื่นออกมาจากListActivity
ในขณะที่คนอื่น ๆ ขยายเพียงจากActivity
?
ใน Android Manifest แฟ้มใส่แอตทริบิวต์ของคุณ<activity>
ที่android:screenOrientation="portrait"
มีสองวิธีคือ
android:screenOrientation="portrait"
สำหรับแต่ละกิจกรรมในไฟล์มานิเฟสต์this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
ในแต่ละไฟล์ javaในรายการ:
<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>
หรือ: ในกิจกรรมหลัก
@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.
ฉันได้รับ การเพิ่มxmlns:tools="http://schemas.android.com/tools"
องค์ประกอบหลักในการแก้ปัญหา
โพสต์เก่าฉันรู้ เพื่อเรียกใช้แอพของคุณเสมอในโหมดแนวตั้งแม้ในขณะที่การวางแนวอาจจะเป็นหรือสลับ ฯลฯ (เช่นบนแท็บเล็ต) ฉันออกแบบฟังก์ชั่นนี้ที่ใช้ในการตั้งค่าอุปกรณ์ในแนวที่ถูกต้องโดยไม่จำเป็นต้องทราบว่า คุณสมบัติถูกจัดระเบียบบนอุปกรณ์
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); }
}
ทำงานเหมือนจับใจ!
ข้อสังเกต: เปลี่ยนthis.activity
ตามกิจกรรมของคุณหรือเพิ่มไปยังกิจกรรมหลักและลบthis.activity
;-)
ฉันใช้
android:screenOrientation="nosensor"
มันจะมีประโยชน์ถ้าคุณไม่ต้องการสนับสนุนโหมดแนวตั้งคว่ำลง