首页 > 其他分享 >Delphi12支持全屏显示启动界面的styles.xml

Delphi12支持全屏显示启动界面的styles.xml

时间:2023-07-07 18:22:50浏览次数:33  
标签:styles xml 界面 Delphi12 启动 全屏

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar">
        <item name="android:navigationBarColor">#01ffffff</item>
        <item name="android:statusBarColor">#00000000</item>
        <item name="android:colorPrimary">#372c7c</item>
        <item name="android:windowBackground">@drawable/splash_image_def</item>
    </style>
</resources>

发布这个Style.xml
禁用系统带的两个:

 

标签:styles,xml,界面,Delphi12,启动,全屏
From: https://www.cnblogs.com/kinglandsoft/p/17535778.html

相关文章

  • mybatis: 正确使用mybatis中的mapperLocations配置多个xml扫描路径
    <!--myBatis文件--><beanid="sqlSessionFactory"class="org.mybatis.spring.SqlSessionFactoryBean"><propertyname="dataSource"ref="dataSource"/><!--自动扫描entity目录,省掉Configu......
  • org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the sp
    环境和所需包:      1,JDK1.5      2,poi-3.5-FINAL-20090928.jar,           poi-contrib-3.5-FINAL-20090928.jar,           poi-ooxml-3.5-FINAL-20090928.jar,           poi-scratchpad-3.5-FINAL-20090928.jar,        ......
  • springboot 加载自定义的属性配置文件 或者xml文件
    1、properties user.propertiesname=zhangshanage=18  2、xml Pen1.xml<?xmlversion="1.0"encoding="utf-8"?><!DOCTYPEpropertiesSYSTEM"http://java.sun.com/dtd/properties.dtd"><properties><......
  • 让python的lxml模块的xpath支持正则表达式
    python的lxml模块是处理xml文档的比较好用的工具,其中的xpath函数可以检索指定的元素,但是它不支持正则表达式,比如某个属性的值是否匹配某个正则表达式,就没有办法实现.不过可以利用它的自定义函数扩展功能来实现,如下代码所示:importrefromlxmlimportetreefromlxm......
  • 【Oracle】行转列的函数wm_concat,listagg,xmlagg,pivot以及动态行转列
    【Oracle】行转列的几种情况表的数据如下朴实无华的函数1.wm_concat使用格式:select分组字段,wm_concat(要转换的列名)from表名groupby分组字段实例:selectit.Code,wm_concat(it.inv)fromttt20230705itgroupbyit.Code2.listagg()withingroup()使用格式:......
  • Xml Tips
    XmlTips1.xml中的注释<!--这是注释-->并非用于XML分析器的内容(例如与文档结构或编辑有关的说明)可以包含在注释中。注释以<!--开头,以-->结尾,例如<!--cataloglastupdated2000-11-01-->。注释可以出现在文档序言中,包括文档类型定义(DTD);......
  • 原生 new XMLHttpRequest() 请求
       letxhr=newXMLHttpRequest();    //先new一个 xhr.open("POST","https://chunyuanqing.cn/adminapi/order/batchdelivery/import");  //请求的类型     请求的地址 xhr.setRequestHeader('Authori-zation',bz);       ......
  • JAVA生成xml文件格式
    publicboolean A(参数1,……){Documentdocument=DocumentHelper.createDocument();Namespacena=Namespace.get("");Strings=null;na=new Namespace(xxxxxxxxxxxxxxxxxxxxx);//命名空间Elementroot=document.addElement(newQName(“A......
  • IOC容器基本使用(XML配置)
    一、Bean的实例化方式1.静态内部类一个外部类里面定义了一个静态内部类:publicclassOuterClass{staticclassInnerClass{publicvoidinnerMethod(){System.out.println("Thisisainnerclassm......
  • 光脚丫学LINQ(010):将内存中的对象转换为XML
    视频演示:http://u.115.com/file/f24db1fdfa 通过LINQ查询,可以轻松地在内存中的数据结构、SQL数据库、ADO.NET数据集和XML流或文档之间转换数据。下面的示例将内存中的数据结构中的对象转换为XML元素。List<Student>Students=newList<Student>(){newStudent{......