gpt4 book ai didi

java - 如何在启动时保存应用程序方向状态

转载 作者:行者123 更新时间:2023-12-02 12:54:13 25 4
gpt4 key购买 nike

我正在开发一个媒体播放器 Android 应用程序。我在 res 文件夹中为不同的 Activity 设置了纵向和横向布局。我想要每个单独的启动实例都有一个方向。这意味着,如果用户以纵向模式启动应用程序,它应该只显示我的纵向布局,直到其被破坏,或者如果用户以横向模式启动应用程序,我的横向布局将被公开。有办法解决这个问题吗?

这是我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.musicianfocus.ben.wordedfm">
<uses-permission android:name="android.permission.INTERNET"/>

<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".SplashActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<category android:name="android.intent.category.LAUNCHER" />
<intent-filter>

<action android:name="com.musicianfocus.ben.wordedfm.actionPLAY" />
</intent-filter>
</activity>
<service android:name=".RadioService"
android:enabled="true"/>

</application>

</manifest>

最佳答案

你可以使用这个

<activity android:name=".MainActivity" 
android:screenOrientation="locked">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

关于java - 如何在启动时保存应用程序方向状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44495293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com