簡體   English   中英

Xamarin:上下文操作所選項目背景顏色

[英]Xamarin: Context Action Selected Item Background Color

我里面有一個 ListView 和一個自定義單元格。 我添加了上下文菜單,它工作正常。 唯一的問題是,當我長按列表中的一個項目時,所選項目在 Android 上會有一個不可見的白色背景,因此用戶將無法看到他們正在選擇的項目。 有什么辦法可以改變嗎?

您可以直接在 Android 上自定義顏色屬性。

1.在colors.xml文件中添加以下顏色

<color name="ListViewSelected">#96BCE3</color>
<color name="ListViewHighlighted">#E39696</color>

2.在文件styles.xml中添加以下屬性

  <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>

我的整個styles.xml如下:

  <?xml version="1.0" encoding="utf-8" ?>
<resources>

  <style name="MainTheme" parent="MainTheme.Base">
  </style>
  <!-- Base theme applied no matter what API -->
  <style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
    <item name="windowNoTitle">true</item>
    <!--We will be using the toolbar so no need to show ActionBar-->
    <item name="windowActionBar">false</item>
    <!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
    <!-- colorPrimary is used for the default action bar background -->
    <item name="colorPrimary">#2196F3</item>
    <!-- colorPrimaryDark is used for the status bar -->
    <item name="colorPrimaryDark">#1976D2</item>
    <!-- colorAccent is used as the default value for colorControlActivated
         which is used to tint widgets -->
    <item name="colorAccent">#FF4081</item>
    <!-- You can also set colorControlNormal, colorControlActivated
         colorControlHighlight and colorSwitchThumbNormal. -->
    <item name="windowActionModeOverlay">true</item>

    <item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>

   

      <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>

  <style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
    <item name="colorAccent">#FF4081</item>
  </style>
</resources>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM