具体来说,我希望我写的应用程序始终保持相同的方向(纵向),以便旋转设备不会导致它进入横向.
我尝试了nativescript-orIEntation插件和setorIEntation.
var orIEntation = require('nativescript-orIEntation');console.log(JsON.stringify(orIEntation));// outputs Js: {}orIEntation.setorIEntation("portrait");
但是我收到错误“无法读取未定义的属性setorIEntation.
tns插件列表显示已安装插件.此外,我尝试删除平台/ androID目录并运行tns平台添加androID具有相同的结果.
我还尝试将androID:screenorIEntation =“portrait”的各种组合放入AndroIDManifest.xml,但没有成功.
App_resources内部的AndroIDManifest.xml看起来像这样
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="__PACKAGE__" 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="__APILEVEL__"/> <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"/> <application androID:screenorIEntation="portrait" 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|orIEntation|screenSize" androID:theme="@style/LaunchScreentheme"> <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>解决方法 我的应用只是纵向.对于androID,你只需要在AndroIDManifest.xml里面的activity标签中添加androID:screenorIEntation =“portrait”.对于iOS,打开Xcode – >在项目导航器上选择项目(左侧面板) – >在中间面板中选择目标 – >选择“常规”标签 – >在“部署信息”部分中仅勾选“纵向” 总结
以上是内存溢出为你收集整理的android – 如何在nativescript中设置方向全部内容,希望文章能够帮你解决android – 如何在nativescript中设置方向所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)