我在我的项目中使用nativescript,而且我总是在我的Galaxy Alpha上的状态栏菜单上禁用切换器,允许方向更改。当我打开我的应用程序时,按钮状态设置为启用。如何删除此行为?
以下是我所说的按钮的示例,在此屏幕上它称为自动旋转。 https://lh4.ggpht.com/LuZ3y6wD4aUBdBvZ8Wxf73BpWdfbfNdxOVcHMuRVgRcyz-dl9rRNUwtpx-L9uPlgJdc=h900
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.nativescript.AzoftDeviceTracking"
android:versionCode="1"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="25"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="com.tns.NativeScriptActivity"
android:label="@string/title_activity_kimera"
android:configChanges="keyboardHidden|screenSize"
android:theme="@style/LaunchScreenTheme"
android:screenOrientation="portrait">
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity"/>
</application>
</manifest>
更新 好的,我发现可能reason但在nativescript代码中找不到它。
答案 0 :(得分:0)
你试过这个吗,我在我的项目中使用它并且工作正常
答案 1 :(得分:0)
这应该为您解决问题:
import android.provider.Settings;
public static void setAutoOrientationEnabled(Context context, boolean enabled)
{
Settings.System.putInt( context.getContentResolver(), Settings.System.ACCELEROMETER_ROTATION, enabled ? 1 : 0);
}
向AndroidManifest.xml添加权限
答案 2 :(得分:0)
我遇到了同样的问题。我最后使用的是OrientationListener来检测用户何时实际将手机倾斜到横向,然后将方向设置为SCREEN_ORIENTATION_SENSOR。
Sub CreateMenu()
' Delete the CommandBar if it exists already
On Error Resume Next
Application.CommandBars("Worksheet Menu Bar").Controls("My Tool").Delete
Set cControl = Application.CommandBars("Worksheet Menu Bar").Controls.Add
With cControl
.Caption = "My Tool"
.Style = msoButtonCaption
End With
End Sub
您还需要添加肖像检查,因为您在原始帖子中描述了需要。