Michael

写写代码,说说人生

您好,我是Michael,欢迎来到我的个人家园。
代码搬运工,目前就职于XX证券,努力修行中。


H5 / Java / Objc / Swift / Vue / RN

Android 8.0 的填坑(透明的activity崩溃)

透明的activity 不能继续使用

java.lang.RuntimeException:Unable to start activity ComponentInfo{net.maipeijian.xiaobihuan/com.etop.EtoVinActivity}: java.lang.IllegalStateException: Only fullscreen activities can request orientation

原因是:

sdk27版本使用

if targetSdkVersion is >=27 ( > android.os.Build.VERSION_CODES.O) you get this error, they have changedActivityRecordin latest Android version adding this:

void setRequestedOrientation(int requestedOrientation) {
	if (ActivityInfo.isFixedOrientation(requestedOrientation) && !fullscreen && appInfo.targetSdkVersion > O) {
		throw new IllegalStateException("Only fullscreen activities can request orientation");
		....
	}
}

解决办法:

  1. targetSdkVersion <=26 即可

    原因是sdk27版本使用:

    if targetSdkVersion is >=27 ( > android.os.Build.VERSION_CODES.O) you get this error, they have changed ActivityRecord in latest Android version adding this:

    void setRequestedOrientation(int requestedOrientation) {
    	if (ActivityInfo.isFixedOrientation(requestedOrientation) && !fullscreen && appInfo.targetSdkVersion > O) {
    		throw new IllegalStateException("Only fullscreen activities can request orientation");
    		....
    	}
    }
    
  2. 不需要使用坚屏的不要使用如下代码

    设置锁定坚屏setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 或者 android:screenOrientation="portrait"

  3. 这种方式有点low 可是暂时过渡方案(判断版本号设置主题)

    // 8.1不能使用透明主题
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES. O) {
    	this.setTheme(R.style.A); // 不透明
    } else {
    	this.setTheme(R.style.B); // 透明主题
    }
    

    如果使用该方法:

    • 设置主题代码放在 onCreate方法中的:super.onCreate(savedInstanceState);
    • 设置主题代码(setTheme):setContentView(R.layout.activity);
    • manifest 中activity不要使用设置主题代码:android:theme="@style/NoTitleDialog"

源码移步我的GitHub

最近的文章

在同一台服务器上配置多个Tomcat的方法

如果要在一台服务器上配置多个Tomcat,主要就是要避免Tomcat服务器的端口冲突的问题。只需要修改CATALINA_HOME\conf\server.xml中的启动端口和连接端口就OK了!下面我们把配置的详细过程写在下面,以供参考:(此例以配置三个Tomcat为例) 下载apache-tomcat-7.0.63,下载下来的文件为apache-tomcat-7.0.63.zip。[下载地址](http://tomcat.apache.org/download-70.cgi)...…

Tomcat继续阅读
更早的文章

Tomcat设置不需要项目名便可访问项目(直接用域名或者ip和端口访问)

实际生产中往往访问web项目要求直接使用ip+端口或者使用域名便可直接访问项目,不加/项目名称。配置起来其实是非常简单的。在tomcat\conf目录下找到server.xml,在<Host></Host>配置里面添加一行配置。<Context docBase="D:\apache-tomcat-8.0.36-windows-x64\apache-tomcat-8.0.36\webapps\waGong" path="/" reloadable="true...…

Tomcat继续阅读