Posted December 28, 2024Dec 28 Administrators Download: The distributive is available by request only. Release date: 28 December 2024 Bug Fixes 🐛 The application with TfgNavigationBar could crashed on startup (Android).
February 25Feb 25 After updating to this version I get this error, and the application title is fixed above!!! D11.3 and D12.2 SDK 35, JDK 22 Edited February 25Feb 25 by Multsoft.com
February 25Feb 25 Author Administrators Hello, 2 hours ago, Multsoft.com said: and the application title is fixed above!!! The issue in your project is not the same as described in changelog. You didn't update styles.xml file correctly. Please, compare correct styles.xml file with your version and update it, if its required: Pay attention on tag <item name="windowActionBar">false</item> and <item name="windowNoTitle">true</item> <?xml version="1.0" encoding="utf-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> <!-- Basic theme for all Android versions --> <style name="BaseAppTheme" parent="Theme.AppCompat.Light"> <!-- Hiding toolbar --> <item name="android:windowContentOverlay">@null</item> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <!-- Splash screen image, which is displayed on cold application startup before first rednering form. --> <item name="android:windowBackground">@drawable/launch_screen</item> <!-- We make the system status bar transparent so that when loading the status bar overlaps on a splash screen with a transparency effect --> <item name="android:windowTranslucentStatus">true</item> <!-- By default, Android does not use reels to select the date and time. However, we have TfgDatePicker/TfgTimePicker components that should work like drums. --> <item name="android:datePickerStyle">@style/SpinnerDatePicker</item> <item name="android:timePickerStyle">@style/SpinnerTimePicker</item> </style> <style name="AppTheme" parent="BaseAppTheme"> </style> <!-- TfgDatePicker style for displaying component like a wheel --> <style name="SpinnerDatePicker" parent="android:Widget.Material.DatePicker"> <item name="android:datePickerMode">spinner</item> </style> <!-- TfgTimePicker style for displaying component like a wheel --> <style name="SpinnerTimePicker" parent="android:Widget.Material.TimePicker"> <item name="android:timePickerMode">spinner</item> </style> <!-- TfgCollectionView style, which is necessary for the native view to have the ability to display scrollbars. Even though in the end there can be only one scrollbar, it is necessary to specify two types here. --> <style name="CollectionView" parent="android:Widget"> <item name="android:scrollbars">vertical|horizontal</item> </style> <!-- TfgVerticalScrollBar style, which is necessary for the native view to have the ability to display scrollbars. --> <style name="VerticalScrollBox"> <item name="android:scrollbars">vertical</item> </style> </resources> Thank you