gpt4 book ai didi

android - 删除用于 android 的 xamarin 表单中 Material 输入控件的下划线

转载 作者:行者123 更新时间:2023-12-04 03:45:43 25 4
gpt4 key购买 nike

我需要删除 Xamarin.Forms for Android 中 Material 输入控件的下划线。
我使用的是 Xamarin.Forms 版本 4.8.0.1687,在之前的 Xamarin.Forms 版本 4.6.0.847 中,我曾经使用下面的行隐藏 Material 条目下划线。现在,使用 4.8.0.1687 - 它不起作用。

Control.EditText.Background = null;
Control.EditText.SetBackgroundColor(Android.Graphics.Color.Transparent);

最佳答案

remove underline for material entry control in xamarin forms for android


您好,自定义渲染器的类型是什么?如果使用 Material Entry ,则类型应为 MaterialEntryRenderer
我用4.8.0.1687版本测试了一个基本的演示来测试功能,它工作正常。下面是相关代码:
[assembly : ExportRenderer(typeof(CustomEntry),typeof(CustomEntryRenderer))]
namespace TestApplication_1.Droid
{
public class CustomEntryRenderer : MaterialEntryRenderer
{
public CustomEntryRenderer(Context context) : base(context) { }

protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
{
base.OnElementChanged(e);

if (Control != null)
{
Control.EditText.Background = null;
Control.EditText.SetBackgroundColor(Android.Graphics.Color.Transparent);
}
}
}
}
这是工作的 gif:
enter image description here

关于android - 删除用于 android 的 xamarin 表单中 Material 输入控件的下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65180510/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com