繁体   English   中英

如何在 Xamarin Picker 中设置项目列表的样式(在 Android 中)

[英]How do I style the items list in a Xamarin Picker (in Android)

我有一个 Xamarin Android 应用程序,它使用 Picker 从值列表中进行选择。 我一直在更改应用程序的样式,但在使用 Picker 时遇到了问题。 虽然我可以设置 TextColor,但我无法设置占位符文本的颜色。

在搜索 SO 寻求帮助后,我实现了一个自定义渲染器,现在我的文本和占位符显示在正确的文本中。 然而,以前当我触摸占位符文本时,子对话框出现并显示所有项目,允许用户选择一个。 现在我实现了自定义渲染器,子对话框只显示前两个项目,用户必须在点击确定之前滚动它们。

我有两个问题:

  1. 至少,如何让子对话框再次显示完整列表?
  2. 是否可以为项目列表对话框设置背景和文本颜色?

XAML 看起来像这样:

<c:CustomPicker x:Name="DivisionList" Title="{x:Static prop:Resources.PickerDivision}" 
                        SelectedIndexChanged="DivisionList_SelectedIndexChanged">
    <Picker.Behaviors>
        <b:RequiredPickerValidator x:Name="DivValidator" IsValid="{Binding Path=BindingContext.IsDivisionValid, Mode=OneWayToSource, Source={x:Reference contentPage}}" />
    </Picker.Behaviors>
</c:CustomPicker>

CustomPicker 类如下:

namespace <myapp>.Portable.Controls
{
    public class CustomPicker : Picker
    {
        public Color PlaceholderColour
        {
            get { return (Color)App.Current.Resources["PlaceholderTextColour"]; }
        }

        public Color TextColour
        {
            get { return (Color)App.Current.Resources["LabelTextColour"]; }
        }

        public Color BackgroundColour
        {
            get { return (Color)App.Current.Resources["PaneBackgroundColour"]; }
        }
    }
}

客户渲染器是这样的:

[assembly: ExportRendererAttribute(typeof(CustomPicker), typeof(CustomPickerRenderer))]
namespace <myapp>.Droid.Controls.Renderers
{
    public class CustomPickerRenderer : PickerRenderer
    {
        protected override void OnElementChanged(ElementChangedEventArgs<Picker> e)
        {
            base.OnElementChanged(e);

            Control?.SetPadding(20, 20, 20, 20);
            if (e.OldElement != null || e.NewElement != null)
            {
                var customPicker = e.NewElement as CustomPicker;

                Android.Graphics.Color phCol = customPicker.PlaceholderColour.ToAndroid();
                Android.Graphics.Color textCol = customPicker.TextColour.ToAndroid();
                Android.Graphics.Color bgCol = customPicker.BackgroundColour.ToAndroid();

                Control.SetBackgroundColor(bgCol);
                Control.SetHintTextColor(phCol);
                Control.SetTextColor(textCol);
            }
        }
    }
}

提前谢谢了!

自定义渲染器之前的选择器弹出窗口: 自定义渲染器之前的选择器弹出窗口

自定义渲染器后的选择器弹出窗口: 自定义渲染器后弹出选择器

似乎有2个选择器渲染器。

Xamarin.Forms.Platform.Android.PickerRendererXamarin.Forms.Platform.Android.AppCompat.PickerRenderer

确保使用最后一个,并且您的布局将与以前相同!!!

我得到答案的来源: https : //forums.xamarin.com/discussion/97150/how-to-write-a-custom-renderer-for-bindable-picker-to-change-its-font-attributes-家庭规模

渲染器(没有实际指示,共有2个): https : //docs.microsoft.com/zh-cn/xamarin/xamarin-forms/app-fundamentals/custom-renderer/renderers

您可以在Control上添加Click事件,然后可以自定义对话框,在此对话框中,您可以自定义所需的任何内容,背景,项目文本颜色等。

在您的CustomPickerRenderer ,执行以下操作:

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

    Control?.SetPadding(20, 20, 20, 20);
    if (e.OldElement != null || e.NewElement != null)
    {
        var customPicker = e.NewElement as CustomPicker;
        ...
        // add click event
        Control.Click += Control_Click;
    }
}

您可以显示一个Dialog ,并自定义其布局,例如,在其布局中添加ListView ,这样您将获得显示完整列表的子对话框:

private void Control_Click(object sender, EventArgs e)
{
    Toast.MakeText(Xamarin.Forms.Forms.Context,"111111",ToastLength.Short).Show();
    dialog = new Dialog(Forms.Context);
    dialog.SetContentView(Resource.Layout.dialog);
    Android.Widget.Button b1 = (Android.Widget.Button)dialog.FindViewById(Resource.Id.button1);
    Android.Widget.Button b2 = (Android.Widget.Button)dialog.FindViewById(Resource.Id.button2);
    Android.Widget.ListView listView = (Android.Widget.ListView)dialog.FindViewById(Resource.Id.lv);
    listView.Adapter=new ArrayAdapter<String>(Forms.Context, Android.Resource.Layout.SimpleExpandableListItem1,
        new List<String>() { "111","222","333", "444", "555", "666", "777", "888", "999", });
    b1.Click += B1_Click;
    b2.Click += B2_Click;
    dialog.Show();
}

下面是dialog布局,您可以为项目列表对话框设置背景和文本颜色:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
              android:orientation="vertical">
  <TextView 
    android:text="123456"
    android:layout_width="match_parent"
      android:layout_height="wrap_content"/>
  <ListView
      android:id="@+id/lv"
      android:layout_width="wrap_content"
      android:layout_height="0dp"
      android:layout_weight="1"/>
  <LinearLayout
    android:layout_width="fill_parent"
      android:layout_height="wrap_content"
    android:orientation="horizontal">
  <Button
      android:id="@+id/button2"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Cancel" />

  <Button
      android:id="@+id/button1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Ok" />
  </LinearLayout>
</LinearLayout>

要删除线条并恢复到默认选择器视图而不修改自定义渲染器,只需扩展此类

Xamarin.Forms.Platform.Android.AppCompat.PickerRenderer

它应该看起来像这样;

public class CustomPickerRenderer : Xamarin.Forms.Platform.Android.AppCompat.PickerRenderer
{
    [logic]
}

代替

public class CustomPickerRenderer : PickerRenderer
{
    [logic]
}

默认情况下,您似乎扩展了Xamarin.Forms.Platform.Android并且 Class 似乎正在添加不同的选择器视图。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM