• Android setTheme设置透明主题无效


    如果是设置activity的非透明主题,可以通过setTheme动态设置,但是如果设置透明主题,通过这种方式不会生效,系统似乎忽略了windowIsTranslucent=true这个属性设置。
    例如你的appcation样式如下:

        <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
            
            "colorPrimary">@color/colorPrimary
            "colorPrimaryDark">@color/colorPrimaryDark
            "colorAccent">@color/colorAccent
            "colorControlHighlight">@color/a_bg_color_dddddd
        style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    透明样式如下:

        <style name="AppThemeDynamic" parent="AppTheme">
            "android:windowBackground">@color/transparent
            "android:windowIsTranslucent">true
        style>
    
    • 1
    • 2
    • 3
    • 4

    如果需要动态设置activity透明背景需要先在Androidmainfest清单文件中先设置透明主题:

     <application
            android:theme="@style/AppTheme"
            android:name=".ChatApp"
            android:allowBackup="false"
            android:resizeableActivity="false"
            android:icon="@drawable/icon_logo"
            android:label="@string/app_name"
            android:networkSecurityConfig="@xml/network_security_config"
            android:persistent="true"
            android:supportsRtl="true"
            android:largeHeap="true"
            android:requestLegacyExternalStorage="true"
            android:usesCleartextTraffic="true"
            tools:replace="android:icon,android:allowBackup">
    
    			<activity
                android:name=".activity.UrlActivity"
                android:hardwareAccelerated="true"
                android:theme="@style/AppThemeDynamic"
                android:screenOrientation="portrait" />
                application>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    动态设置代码如下:

      //是否需要透明
      override fun onCreate(savedInstanceState: Bundle?) {
       val isTransparent = if ("如果需要透明"){
          setTheme(R.style.AppThemeDynamic)
          true
        }else{
          setTheme(R.style.AppTheme)
          false
        }
        super.onCreate(savedInstanceState)
      }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
  • 相关阅读:
    uni-app Android studio 本地打包 【图文讲解】
    Redis入门 看这一篇就够了
    JVM调优参数设置步骤
    tcp三次握手的一些疑问
    【软考】系统集成项目管理工程师(九)项目成本管理【4分】
    Day40——Dp专题
    开发工程师必备————【Day17】q前端HTML基础知识点
    antd-vue a-transfer 中 a-tree接口异步加载问题
    Java中线程池的创建与使用
    《windows核心编程》第2章 UNICODE字符
  • 原文地址:https://blog.csdn.net/qq_32898021/article/details/128198987