c# – 如何更改ListView上所选项目的颜色?

前端之家收集整理的这篇文章主要介绍了c# – 如何更改ListView上所选项目的颜色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个ListView,在ViewCell中有一些简单的项目.

当我选择其中一个项目时,它变成橙色.当我点击并按住(打开上下文动作)它变成白色…

<ListView ItemsSource="{Binding Items}" HasUnevenRows="True">
    <ListView.ItemTemplate>
        <DataTemplate>
            <ViewCell>
                <ViewCell.ContextActions>
                    <MenuItem Text="Delete" />
                </ViewCell.ContextActions>
                <StackLayout Orientation="Horizontal" Padding="20">
                    <StackLayout HorizontalOptions="StartAndExpand">
                        <Label Text="{Binding Name}" FontSize="Large" FontAttributes="Bold" />
                        <Label Text="{Binding Description}" />
                    </StackLayout>
                </StackLayout>
            </ViewCell>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

如何自定义这些颜色?

解决方法

我发现我必须直接在Android上自定义它.

要使用主题,我更改了Droid / Properties / AssemblyInfo.cs添加

[assembly: Application(Theme = "@style/AppStyle.Light")]

我创建了一些文件

Droid\Resources\values

colors.xml包含我的主题的颜色定义:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
  <color name="ListViewSelected">#96BCE3</color>
  <color name="ListViewHighlighted">#E39696</color>
</resources>

styles.xml包含主题设置:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
  <style name="AppStyle.Light" parent="android:style/Theme.Material.Light.DarkActionBar">
    <item name="android:colorPressedHighlight">@color/ListViewSelected</item>
    <item name="android:colorLongPressedHighlight">@color/ListViewHighlighted</item>
    <item name="android:colorFocusedHighlight">@color/ListViewSelected</item>
    <item name="android:colorActivatedHighlight">@color/ListViewSelected</item>
    <item name="android:activatedBackgroundIndicator">@color/ListViewSelected</item>
  </style>
</resources>

使用这些名称,我可以改变listview风格.

android:colorPressedHighlight
android:colorLongPressedHighlight
android:colorFocusedHighlight
android:colorActivatedHighlight
android:activatedBackgroundIndicator

参考文献可以在developer.android.com R.attr找到

原文链接:https://www.f2er.com/csharp/97599.html

猜你在找的C#相关文章