Jump to content

Featured Replies

  • 1 month later...

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

Imagem1(Titulo).thumb.jpeg.d3797fb1968352083ac6a27e2a782b32.jpegImagem2.thumb.jpeg.bb6259abfd1c100f666dbfdb350cdb06.jpeg

Edited by Multsoft.com

  • 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

Recently Browsing 0

  • No registered users viewing this page.