- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我的应用程序中有一个教程 Activity ,其中包含一堆幻灯片,其中包含有关如何使用该应用程序的一些详细信息。我希望我的整个应用程序仅处于 PORTRAIT
模式,所以我使用以下代码创建了一个自定义 Application
类:
public class DokkanCardsApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
registerActivityLifecycleCallbacks(new ActivityLifecycleCallbacks() {
@Override
public void onActivityCreated(Activity activity, Bundle bundle) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
@Override
public void onActivityStarted(Activity activity) {
}
@Override
public void onActivityResumed(Activity activity) {
}
@Override
public void onActivityPaused(Activity activity) {
}
@Override
public void onActivityStopped(Activity activity) {
}
@Override
public void onActivitySaveInstanceState(Activity activity, Bundle bundle) {
}
@Override
public void onActivityDestroyed(Activity activity) {
}
});
}
现在的问题是,每当我第一次安装教程时,它都可以正常工作,但现在它崩溃并抛出 IllegalArgumentException
异常,提示 Only fullscreen activities可以要求定位。经过一番研究,我意识到这是谷歌的错误(如果我错了请纠正我)但我还没有找到解决方法。异常指向我的自定义 Application
类以及您可以在下面看到的我的教程类(class)。但是,我还没有找到问题。有什么想法吗?
教程.java:
public class Tutorial extends MaterialIntroActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addSlide(new SlideFragmentBuilder()
.title("Main Screen")
.description("Search through the entire Dokkan Cards database and find any card you like.")
.image(R.drawable.image_main)
.backgroundColor(R.color.mainScreen)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new SlideFragmentBuilder()
.title("Tap & Long-Press Actions")
.description("Tap on any card icon to view it's details or Long-press on it to add it to either one of your boxes")
.image(R.drawable.image_long_tap)
.backgroundColor(R.color.long_tap)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new SlideFragmentBuilder()
.title("Side Menu")
.description("Swipe from left to right to access a handful of menu options")
.image(R.drawable.image_menu_slide)
.backgroundColor(R.color.side_menu)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new SlideFragmentBuilder()
.title("Auto-Save")
.description("This app saves your box data automatically when you close the app so that you don't have to worry about saving manually")
.image(R.drawable.image_auto_save)
.backgroundColor(R.color.auto_save)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new SlideFragmentBuilder()
.title("Data Security")
.description("Your data is 100% safe since it cannot be accessed by anyone else.All data are stored locally on your device and not on a server or cloud")
.image(R.drawable.image_data_security)
.backgroundColor(R.color.data_security)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new SlideFragmentBuilder()
.title("Donations")
.description("Although donations are not mandatory, they help a lot in the app's development process. You can submit your donation via the website tab in the app's side menu.")
.image(R.drawable.image_donation)
.backgroundColor(R.color.donations)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
addSlide(new TutorialDisclaimerSlide());
addSlide(new SlideFragmentBuilder()
.title("That's it")
.description("That's the end of this tutorial.You can access it at any time from the top right corner of the app")
.image(R.drawable.image_tutorial)
.backgroundColor(R.color.tutorial_end)
.buttonsColor(R.color.colorPrimaryGLB)
.build());
}
这是完整的异常:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dcv.spdesigns.dokkancards/com.dcv.spdesigns.dokkancards.ui.Tutorial}: java.lang.IllegalStateException: Only fullscreen activities can request orientation
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2955)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3030)
at android.app.ActivityThread.-wrap11(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1696)
at android.os.Handler.dispatchMessage(Handler.java:105)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6938)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)
Caused by: java.lang.IllegalStateException: Only fullscreen activities can request orientation
at android.os.Parcel.readException(Parcel.java:1966)
at android.os.Parcel.readException(Parcel.java:1904)
at android.app.IActivityManager$Stub$Proxy.setRequestedOrientation(IActivityManager.java:6186)
at android.app.Activity.setRequestedOrientation(Activity.java:5831)
at com.dcv.spdesigns.dokkancards.presenter.DokkanCardsApplication$1.onActivityCreated(DokkanCardsApplication.java:20)
at android.app.Application.dispatchActivityCreated(Application.java:221)
at android.app.Activity.onCreate(Activity.java:1067)
at android.support.v4.app.SupportActivity.onCreate(ComponentActivity.java:71)
at android.support.v4.app.FragmentActivity.onCreate(FragmentActivity.java:325)
at android.support.v7.app.AppCompatActivity.onCreate(AppCompatActivity.java:85)
at agency.tango.materialintroscreen.MaterialIntroActivity.onCreate(MaterialIntroActivity.java:73)
at com.dcv.spdesigns.dokkancards.ui.Tutorial.onCreate(Tutorial.java:17)
at android.app.Activity.performCreate(Activity.java:7174)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1220)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2908)
*如果有人感兴趣,这是我在 Manifest.xml 文件中使用自定义应用程序类的部分:
<application
android:name=".presenter.DokkanCardsApplication"
android:allowBackup="true"
android:fullBackupContent="@xml/backup_descriptor"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
我经常使用 SSMS 查询数据和构建数据集,我的 IT 部门负责数据库管理。 最近我发现了 Azure Data Studio,我喜欢: 智能感知 源代码控制(例如使用 Git) 来自社区的扩展 SQ
我想根据我使用的 visual studio 版本编译不同的东西,比如 #if VISUAL_STUDIO_VERSION > 2015 eventH?.Invoke(this, EventArgs.
我们的开发团队计划从 visual studio 2005 升级到 visual studio 2010 -- 跳过 visual studio 2008。 大部分项目是VB ASP.NET项目,使用
我的Visual Studio 2015无法构建2010平台工具集。它说: The build tools for Visual Studio 2010 (v100) cannot be found.
我目前正在使用 Visual Studio 2015 来编程 ASP.NET Core 应用程序。我对安装 Visual Studio 2017 有以下疑问: 什么被认为是最佳实践和/或最干净的方法?
尝试从扩展和更新获取 Visual Studio 扩展时,出现以下错误:- 向 visualstudiogallery.msdn.microsoft.com/Services/VStudio/Exte
这个问题在这里已经有了答案: Can Visual Studio Code and VS 2012 be installed on same computer? (1 个回答) 关闭去年。 在安装了
作为标准安装的一部分,Visual Studio Code 带有一个名为“Monokai Dimmed”的颜色主题。 有没有办法将它移植到 Visual Studio 2015?我检查了社区主题( h
我想开始编程 CUDA。 我已经安装了 Visual Studio 2010 Express。 我还安装了 nVidia nSight Visual Studio。 而且我具备所有常见的先决条件(Ne
Visual Studio Community Edition是否可以使用Visual Studio Online帐户上的存储库? 我一直为包含在Online帐户中的Visual Studio Onl
我有一个我一直在开发的应用程序,但在 android studio 上遇到了问题。当我点击“build->run”然后选择我的设备时,应用程序永远不会在我的手机上运行(并且自动出现的android-s
我正在使用Visual Studio2010。我面临的一个问题是,当我创建一个新的Web项目时,Visual Studio将创建该项目,并且不会在解决方案资源管理器中显示其解决方案。 另一件事是,我想
我通读了这里的许多帖子,却找不到一个有效的明确答案。因此,在花了一些时间使它生效之后,我认为应该发布它。 问题:发布配置文件将建立在服务器上,但不会发布。 解: 确保已安装Microsoft Wind
我正在尝试使用Visual Studio 2012构建针对.NET 3.5的C++ CLI应用程序。 通过安装Visual Studio 2008,并指定v90平台工具集,我已经在一台机器上进行了这项
我在 Microsoft Visual Studios 2013 中有一个项目,我想在 Microsoft Visual Studios 2010 中打开它。有什么简单的方法吗?还是我必须在2010年
我想知道,如果我发送一个解决方案文件夹(它是用 visual studio C# 编写的),您可以在 visual studio for mac 中打开解决方案吗? 在visual studio 20
有没有办法在 Visual Studio Code 和 Visual Studio 中设置相同的快捷方式(而不必每次都手动更改它们)? 例如,我在 Visual Studio Code 中经常使用 A
我刚开始了解 Visual Studio Code。我想知道,我可以将 Visual Studio 替换为所有 .NET 开发相关的工作吗? 我可以节省 Visual Studio 许可的成本吗? V
我安装了具有有效许可证(Visual Studio 订阅)的 Visual Studio 2019 企业版(VS 2019 16.1.4),它运行良好。 突然之间,当我尝试打开项目或项目中的任何文件时
我一直在使用 Compass 编译 Windows 环境中的 sass 文件,无论是在命令行上还是使用 Compass-app 来查看目录。 我刚刚开始使用 Visual Studio(专业版 201
我是一名优秀的程序员,十分优秀!