Xamarin表单:是否可以在Android中添加披露指标?

enter image description here

我有一个TextCell,它在我的Xamarin Forms应用程序的iOS端添加一个披露指示器:

<TextCell Text="Japanese" StyleId="disclosure"/>

我也想为android方面做同样的事情,但我似乎无法找到任何自定义渲染器来做这样的事情.

有没有人能够做到这一点?如果有人能指出我那个方向,我真的很感激.

解决方法

根据 design guidelines,建议不要在Android中的订单项上使用右指向的插入符号(披露指示符).

Don’t use right-pointing carets on line items

A common pattern on other platforms is the display of right-pointing carets on line items that allow the user to drill deeper into additional content.

Android does not use such indicators on drill-down line items. Avoid them to stay consistent with the platform and in order to not have the user guess as to what the meaning of those carets may be.

enter image description here

编辑1:

但是,如果您仍想添加指标,则可以使用图像.

Download the icon添加为drawable到android项目.并注册渲染器如下:

[assembly: ExportRenderer(typeof(TextCell),typeof(StandardTextCellRenderer))]
namespace AppNamespace.Droid
{
    public class StandardTextCellRenderer : TextCellRenderer
    {

        protected override Android.Views.View GetCellCore(Cell item,Android.Views.View convertView,Android.Views.ViewGroup parent,Android.Content.Context context)
        {
            var cell = base.GetCellCore(item,convertView,parent,context);

            switch (item.StyleId)
            {
                case "disclosure":
                    var bmp = BitmapFactory.DecodeResource(cell.Resources,Resource.Drawable.ic_chevron_right);
                    var bitmapDrawable = new BitmapDrawable(cell.Resources,Bitmap.CreateScaledBitmap(bmp,50,true));
                    bitmapDrawable.Gravity = GravityFlags.Right | GravityFlags.CenterVertical;
                    cell.SetBackground(bitmapDrawable);
                    break;
            }
            return cell;
        }
    }
}

相关文章

vue阻止冒泡事件 阻止点击事件的执行 &lt;div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些