我正在使用 Delphi 10.1 Berlin 开发 Android 移动应用程序。而且我需要更改 Android 应用程序的标题栏颜色,在搜索互联网时,我发现了一些示例链接:Android Material design implementation和Stack overflow Question。但是我还没有找到任何使用 Delphi 来实现它的链接。请帮助我进一步进行。
问问题
2202 次
4 回答
1
这仅适用于启用包含启动图像选项
检查这个 http://blog.rzaripov.kz/2016/12/android-ios.html(俄语) https://github.com/rzaripov1990/FMX.StatusBar(演示项目)
样式.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">false</item>
<item name="android:windowBackground">@drawable/splash_image_def</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>
部署
- Remote Name = styles.xml
- Remote path = \res\values-v21\
于 2017-05-08T20:36:08.983 回答
1
styles.xml
在 ./res 文件夹中部署
此文件的内容示例:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme.EditTextStyle" parent="@android:style/Widget.Holo.Light.EditText">
<item name="android:background">@null</item>
</style>
<style name="AppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
<item name="android:editTextStyle">@style/AppTheme.EditTextStyle</item>
<item name="android:colorPrimary">#ff2b2e38</item>
<item name="android:colorAccent">#ff0288d1</item>
<item name="android:windowBackground">@android:color/black</item>
<!-- <item name="android:windowTranslucentStatus">true</item> -->
</style>
</resources>
在编辑 androidmanifest 并在<application ..>
标签中添加android:theme="@style/AppTheme"
而不是android:theme="%theme%"
于 2017-04-30T23:53:25.323 回答
0
您可以使用我在 github 中的代码更改系统栏颜色(状态栏或导航栏):
https://github.com/viniciusfbb/fmx_tutorials/tree/master/delphi_system_bars
额外:您甚至可以使用 VisibilityOverlapping 使其半透明,并在其后面放置图像。所有示例都在存储库中。
于 2021-04-01T20:09:10.907 回答
-1
SharedActivity.getWindow.addFlags(TJWindowManager_LayoutParams.JavaClass.FLAG_FULLSCREEN);
适用于 10.3.3
于 2020-06-26T22:28:29.413 回答