Xamarin 表单 Android EntryCell 下划线
Xamarin Forms Android EntryCell Underline
我需要删除图中所示的默认下划线
EntryCell Example
我已经为 Android 创建了一个自定义渲染器,它在设备上运行良好。我可以为 EntryCells
和其他 UI 调整着色。
但是我需要去掉这条线,我使用占位符来表明它是 EntryCell
,所以我不希望这条线可见。需要添加什么来实现这个
using System;
using System.ComponentModel;
using Android.Content;
using Android.Views;
using Android.Widget;
using App.Droid.CustomRenderer;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
using EntryCellRenderer = App.Droid.CustomRenderer.EntryCellRenderer;
[assembly: ExportRenderer(typeof(EntryCell), typeof(EntryCellRenderer))]
namespace App.Droid.CustomRenderer
{
public class EntryCellRenderer : Xamarin.Forms.Platform.Android.EntryCellRenderer
{
protected override Android.Views.View GetCellCore(Cell item, Android.Views.View convertView, ViewGroup parent, Context context)
{
var cell = base.GetCellCore(item, convertView, parent, context) as EntryCellView;
if (cell != null)
{
var textField = cell.EditText as TextView;
textField.SetTextSize(Android.Util.ComplexUnitType.Dip, 20);
textField.SetTextColor(Color.FromHex("#FF8800").ToAndroid());
cell.SetBackgroundColor(Color.FromHex("#FF8800").ToAndroid());
}
return cell;
}
}
}
对于任何其他试图删除下划线的人,请将其添加到您的 Android 自定义渲染器:
textField.SetBackgroundColor(Android.Graphics.Color.Argb(0, 0, 0, 0));
我需要删除图中所示的默认下划线 EntryCell Example
我已经为 Android 创建了一个自定义渲染器,它在设备上运行良好。我可以为 EntryCells
和其他 UI 调整着色。
但是我需要去掉这条线,我使用占位符来表明它是 EntryCell
,所以我不希望这条线可见。需要添加什么来实现这个
using System;
using System.ComponentModel;
using Android.Content;
using Android.Views;
using Android.Widget;
using App.Droid.CustomRenderer;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
using EntryCellRenderer = App.Droid.CustomRenderer.EntryCellRenderer;
[assembly: ExportRenderer(typeof(EntryCell), typeof(EntryCellRenderer))]
namespace App.Droid.CustomRenderer
{
public class EntryCellRenderer : Xamarin.Forms.Platform.Android.EntryCellRenderer
{
protected override Android.Views.View GetCellCore(Cell item, Android.Views.View convertView, ViewGroup parent, Context context)
{
var cell = base.GetCellCore(item, convertView, parent, context) as EntryCellView;
if (cell != null)
{
var textField = cell.EditText as TextView;
textField.SetTextSize(Android.Util.ComplexUnitType.Dip, 20);
textField.SetTextColor(Color.FromHex("#FF8800").ToAndroid());
cell.SetBackgroundColor(Color.FromHex("#FF8800").ToAndroid());
}
return cell;
}
}
}
对于任何其他试图删除下划线的人,请将其添加到您的 Android 自定义渲染器:
textField.SetBackgroundColor(Android.Graphics.Color.Argb(0, 0, 0, 0));