91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現拖拽列表項的排序功能

發布時間:2020-10-03 01:25:22 來源:腳本之家 閱讀:328 作者:一只菜雞 欄目:編程語言

在一些允許用戶自定義欄目順序的app(如:鳳凰新聞、網易云音樂等),我們可以方便地拖拽列表項來完成列表的重新排序,進而完成對欄目順序的重排。這個功能很人性化,而實現起來其實很簡單(甚至都不用寫什么后臺代碼),只有三步。

①把冰箱門打開

首先,我們需要讓冰箱的大門敞開,也就是允許我們進行拖拽的相關操作。以ListView為例,注意下面幾個屬性。

<StackPanel>
    <ListView x:Name="list" 
         AllowDrop="True"
         CanReorderItems="True" 
         IsSwipeEnabled="True">
      <ListView.ItemContainerStyle>
        <Style TargetType="ListViewItem">
          <Setter Property="Background" Value="Gray"/>
          <Setter Property="Foreground" Value="White"/>
          <Setter Property="Margin" Value="4"/>
        </Style>
      </ListView.ItemContainerStyle>
    </ListView>
    <Button Click="Button_Click">Show Items</Button>
    <TextBlock x:Name="txt"/>
  </StackPanel>

AllowDrop屬性允許元素進行拖動,它繼承自UIElement基類,為所有可視元素支持。

CanReorderItems屬性繼承自ListViewBase基類,允許列表控件的項可以重新排序。

IsSwipeEnabled屬性(swipe有“輕掃”之意)也需要設置為“True”,否則在觸摸屏等輸入設備下無法進行操作。相關的詳盡說明在MSDN文檔里有介紹(https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Controls.ListViewBase),此部分摘錄部分原文:

Remarks

Setting IsSwipeEnabled to false disables some default touch interactions, so it should be set to true when these interactions are needed. For example:

If item selection is enabled and you set IsSwipeEnabled to false, a user can deselect items by right-clicking with the mouse, but can't deselect an item with touch by using a swipe gesture.
If you set CanDragItems to true and IsSwipeEnabled to false, a user can drag items with the mouse, but not with touch.
If you set CanReorderItems to true and IsSwipeEnabled to false, a user can reorder items with the mouse, but not with touch.
You typically set IsSwipeEnabled to false to disable swipe animations when items in the view don't support interactions that use the swipe gesture, like deselecting, dragging, and reordering. Disabling the animation when it's not needed can improve the performance of your app.

(有趣的是最后一段:當列表不允許輕掃手勢(撤銷選定,拖動,拖拽重排)時,我們可以“顯式”地將IsSwipeEnabled屬性設置為False來提升應用的性能。)

②把大象裝進去

前臺ok后,我們就可以在后臺加點東西,把我們的排序邏輯(其實并沒有,微軟已經寫好了)添加進去。這個demo里,我用了一個按鈕和一個文本框來觀察重排的結果。如下:

public sealed partial class MainPage : Page
  {
    public MainPage()
    {
      this.InitializeComponent();
      for (int i = 0; i < 10; i++)
      {
        list.Items.Add($"-----THIS IS ITEM {i}-----");
      }
    }
    private void Button_Click(object sender, RoutedEventArgs e)
    {
      txt.Text = string.Empty;
      foreach (var item in list.Items)
      {
        txt.Text += item.ToString()[18] + " ";
      }
    }
  }

這樣,重新排序后,點擊按鈕,我們即可觀察到結果了。

③把冰箱門關上

把大象(?)裝進去之后,最后就是我們的收尾工作了。顯然,剛才的列表只是一個中間的載體,是我們待排序欄目的簡單顯示。一般而言,這個listview會安置在contentdialog或是popup里,那么怎么在重排后立即讓父頁面上的欄目得到相應,進行重排呢?我們用個預定義的委托即可,加在剛才的后臺代碼里(冰箱能裝的東西其實挺多的)。

 public Action action;

然后在父頁面注冊方法,比如:           

btn.Click += async (s, e) => 
       {
         var dialog = new Dialogs.Sort();
         dialog.action += async () => { await sortagain(); };
         await dialog.ShowAsync();
      };

以上所述是小編給大家介紹的Java實現拖拽列表項的排序功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

北安市| 铜山县| 临安市| 丁青县| 元江| 潮州市| 大新县| 广德县| 灵武市| 广饶县| 定州市| 固镇县| 周至县| 柳林县| 清远市| 合山市| 贵阳市| 台东市| 汉沽区| 板桥市| 阿合奇县| 石景山区| 公主岭市| 吉安县| 平阳县| 齐河县| 丰城市| 郎溪县| 酉阳| 隆昌县| 马龙县| 新蔡县| 泊头市| 比如县| 黎川县| 鹤岗市| 屯昌县| 阿拉善左旗| 体育| 泰宁县| 沐川县|