Completed
Last Updated: 14 Sep 2022 13:55 by ADMIN
Release R3 2022
Jakub
Created on: 17 Jun 2022 11:28
Category: Entry
Type: Bug Report
4
Entry: [Android] Watermark is not visible with the latest Xamarin.Forms update (5.0.0.2478)
After updating Xamarin.Forms to version 5.0.0.2478, the WatermarkText doesn't show in RadEntry on Android anymore.
3 comments
Andrew
Posted on: 12 Jul 2022 10:38
Thanks for the workaround, it works for me, since I have extended the RadEntry control, I have added this in the OnNativeControlLoaded() override
ADMIN
Yana
Posted on: 12 Jul 2022 09:23

Hello,

The issue is already in development, it will be available with the next release of Telerik UI for Xamarin controls.

For now, there is an easy workaround - just set the WatermarkText property in code-behind with some delay:

Device.BeginInvokeOnMainThread(()=>
{
    entry.WatermarkText = "write your name here";
});

Regards,
Yana
Progress Telerik

Precise Software Solutions
Posted on: 12 Jul 2022 01:06
I second this.  I confirm that this is happening.