IO。

时间:2018-08-16 10:34:05

标签: xamarin xamarin.forms xamarin.ios mr.gestures

我正在使用xamarin.forms。我没有使用MVVM模式。

我正在使用MR.Gestures插件来处理单击和长按事件。

代码:

<ListView Grid.Row="1"  x:Name="lstProducts" HasUnevenRows="True" SeparatorVisibility="None" BackgroundColor="Transparent" IsPullToRefreshEnabled="True" Refreshing="lstProducts_Refreshing">
                    <ListView.ItemTemplate>
                        <DataTemplate >
                            <ViewCell>
                                <ViewCell.View>
                                    <Grid>
                                        <Grid.Margin>
                                            <OnIdiom x:TypeArguments="Thickness" Phone="10" Tablet="20"/>
                                        </Grid.Margin>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="*"/>
                                            <ColumnDefinition Width="*"/>
                                        </Grid.ColumnDefinitions>
                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="{Binding grdRowHeight}"/>
                                        </Grid.RowDefinitions>
                                        <mr:Grid x:Name="grd_left_product" Grid.Column="0" Grid.Row="0" ClassId="{Binding Left_attachedFilePath}" Style="{StaticResource MostOuterGridForBorder}"
                                                 Tapped="grd_left_product_Tapped" 
                                                 LongPressed="grd_left_product_DoubleTapped">
                                            <Grid Style="{StaticResource OuterGrid}">
                                                <ffimageloading:CachedImage Source="{Binding Left_thumbnailImage}" Style="{StaticResource ThumbNailImageStyle}" />
                                                <StackLayout VerticalOptions="EndAndExpand" >
                                                    <custom:CustomWrapLabel Text="{Binding Left_name}" Style="{StaticResource CustomWrapLabelStyle}"/>
                                                </StackLayout>
                                                <StackLayout IsVisible="{Binding Left_IsChecked}" Style="{StaticResource MultipleDownloadStack}">
                                                    <ffimageloading:CachedImage Source="check_ic.png" Style="{StaticResource MultipleDownloadCheckIcon}" />
                                                </StackLayout>
                                            </Grid>
                                        </mr:Grid>
                                        <mr:Grid x:Name="grd_right_product" Grid.Column="1" Grid.Row="0" ClassId="{Binding Right_attachedFilePath}" Style="{StaticResource MostOuterGridForBorder}" IsVisible="{Binding Right_grd_product_visibility}"
                                                 Tapped="grd_right_product_Tapped" 
                                                 LongPressed="grd_right_product_DoubleTapped">
                                            <Grid Style="{StaticResource OuterGrid}">
                                                <ffimageloading:CachedImage Source="{Binding Right_thumbnailImage}" Style="{StaticResource ThumbNailImageStyle}" />
                                                <StackLayout VerticalOptions="EndAndExpand" >
                                                    <custom:CustomWrapLabel Text="{Binding Right_name}" Style="{StaticResource CustomWrapLabelStyle}" />
                                                </StackLayout>
                                                <StackLayout IsVisible="{Binding Right_IsChecked}" Style="{StaticResource MultipleDownloadStack}">
                                                    <ffimageloading:CachedImage Source="check_ic.png" Style="{StaticResource MultipleDownloadCheckIcon}" />
                                                </StackLayout>
                                            </Grid>
                                        </mr:Grid>
                                    </Grid>
                                </ViewCell.View>
                            </ViewCell>
                        </DataTemplate>
                    </ListView.ItemTemplate>
                </ListView>

下面的函数调用服务后,将我的数据分为两列并返回可观察的集合。

private ObservableCollection<ProductData> BifurcationInLeftRight(List<ResponseDetail> lstResponseDetail)
        {
            lstcollectionproductDatas = new ObservableCollection<ProductData>();
            for (int i = 0; i < lstResponseDetail.Count; i++)
            {
                var items = new ProductData();
                items.Left_IsChecked = false;
                items.Right_IsChecked = false;
                items.Left_productId = lstResponseDetail[i].productId;
                items.Left_name = lstResponseDetail[i].name;
                items.Left_attachedFilePath = lstResponseDetail[i].attachedFilePath;
                items.Left_attachedLink = lstResponseDetail[i].attachedLink;
                items.Left_thumbnailImage = lstResponseDetail[i].thumbnailImage;

                i++;
                if (i < lstResponseDetail.Count)
                {
                    items.Right_productId = lstResponseDetail[i].productId;
                    items.Right_name = lstResponseDetail[i].name;
                    items.Right_attachedFilePath = lstResponseDetail[i].attachedFilePath;
                    items.Right_attachedLink = lstResponseDetail[i].attachedLink;
                    items.Right_thumbnailImage = lstResponseDetail[i].thumbnailImage;
                    items.Right_grd_product_visibility = true;
                }
                else
                {
                    items.Right_productId = null;
                    items.Right_name = null;
                    items.Right_attachedFilePath = null;
                    items.Right_attachedLink = null;
                    items.Right_thumbnailImage = null;
                    items.Right_grd_product_visibility = false;

                    items.grdRowHeight = ThumbNailHeight;
                    lstcollectionproductDatas.Add(items);
                    break;
                }
                items.grdRowHeight = ThumbNailHeight;
                lstcollectionproductDatas.Add(items);
            }
            return lstcollectionproductDatas;
        }

长按时,我检查了该项目并重新绑定了整个项目来源。 “ grd_left_product_DoubleTapped”和“ grd_right_product_DoubleTapped”是我长期关注的事件

private void grd_left_product_DoubleTapped(object sender, MR.Gestures.LongPressEventArgs e)
        {
            try
            {
                var productId = sender as Grid;
                if (!string.IsNullOrEmpty(productId.ClassId) && lstcollectionproductDatas != null && lstcollectionproductDatas.Count > 0)
                {
                    var selectedObject = lstcollectionproductDatas.Where(d => d.Left_attachedFilePath == productId.ClassId).FirstOrDefault();
                    if (selectedObject != null)
                    {
                        int index = lstcollectionproductDatas.IndexOf(selectedObject);
                        if (!selectedObject.Left_IsChecked)
                            lstcollectionproductDatas[index].Left_IsChecked = true;
                        else
                            lstcollectionproductDatas[index].Left_IsChecked = false;
                    }
                    lstProducts.ItemsSource = null;
                    lstProducts.ItemsSource = lstcollectionproductDatas;
                }
                else
                    new ShowSnackbar(AppResources.Validation_FileNotFound_Message);
            }
            catch (Exception)
            {
                new ShowSnackbar(AppResources.Validation_Exception);
            }
        }

问题:

此代码在android上可以正常工作,但在IOS中,当我长按一个项目时它会进行检查,但是当我长按另一行中的另一个项目时,长按事件调用两次。

第一次,对于先前的“已检查”项目,第二次,对于我们要检查的项目。这就是为什么已经被检查的第一时间变为未检查状态的原因。

我的问题是为什么长按的事件在MR.Gestures中被调用了两次?

共有三行(索引-0,1,2)

1。索引2中的左项已选中

2。现在,我长按索引1的左项。

3。长按事件通话两次。

4。第一次使用索引2,并且取消选中所选项目。

5。第二次索引1并检查。

enter image description here

0 个答案:

没有答案