Android:刷卡列表项导致clickOnItem

时间:2015-07-10 13:57:10

标签: android listview swipe

我想将列表视图中的项目向右和向左滑动。 为此我使用这个项目。

https://github.com/daimajia/AndroidSwipeLayout 我可以刷物品,但是当我刷完物品后,物品的onclick被召唤。我不想要这个。  我在SwipeListener上做了很多努力,但是我并没有完全克服这种情况。我可以在不调用onClickItem的情况下从左向右滑动,但是当我向后滑动itemClick调用

swipeLayout.addSwipeListener(new SwipeLayout.SwipeListener() {
            @Override
            public void onStartOpen(SwipeLayout swipeLayout) {
                lineIsClose = false;
            }

            @Override
            public void onOpen(SwipeLayout swipeLayout) {

                lineIsClose = false;
            }

            @Override
            public void onStartClose(SwipeLayout swipeLayout) {
                lineIsClose = false;
            }

            @Override
            public void onClose(SwipeLayout swipeLayout) {
                lineIsClose  = true ;
            }

            @Override
            public void onUpdate(SwipeLayout swipeLayout, int i, int i1) {
            }

            @Override
            public void onHandRelease(SwipeLayout swipeLayout, float v, float v1) {
            }
        });

enter image description here

编辑:一些代码

adapter = new ProductsListAdapter(getActivity(), currentList);
            adapter.setMode(Attributes.Mode.Multiple);
            listView.setAdapter(adapter); 
package com.akakce.market.Adapters;

import android.content.Context;
import android.graphics.Color;
import android.graphics.Paint;
import android.os.Handler;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.daimajia.swipe.SwipeLayout;
import com.daimajia.swipe.adapters.BaseSwipeAdapter;
import com.akakce.market.Models.ProductList;
import com.akakce.market.Managers.SharedPrefManager;
import com.akakce.market.Models.Product;
import com.akakce.market.R;
import com.akakce.market.Utils.GifMovieView;

import java.util.List;

/**
 * Created by cuneyt on 1.7.2015.
 */
public class ProductsListAdapter extends BaseSwipeAdapter {

    Context mContext;
    List<Product> list;
    ProductList currentList;
    boolean lineIsClose = true;
    public ProductsListAdapter(Context context, ProductList currentList) {
        this.mContext = context;
        this.currentList = currentList;
        this.list = currentList.getProducts();

    }

    @Override
    public int getSwipeLayoutResourceId(int i) {
        return R.id.swipe;
    }

    @Override
    public View generateView(final int position, ViewGroup viewGroup) {
        View v = LayoutInflater.from(mContext).inflate(R.layout.item_products_list, null);


        return v;
    }

    @Override
    public void fillValues(final int position, View convertView) {
        Product temp = list.get(position);
        final TextView name = (TextView) convertView.findViewById(R.id.name);
        final TextView count = (TextView) convertView.findViewById(R.id.count);
        final ImageView categoryView = (ImageView) convertView.findViewById(R.id.imageView_category);
        final GifMovieView gifMovieView = (GifMovieView) convertView.findViewById(R.id.gif_1);
        final SwipeLayout swipeLayout = (SwipeLayout) convertView.findViewById(getSwipeLayoutResourceId(position));
        swipeLayout.getDragEdgeMap().clear();
        swipeLayout.addDrag(SwipeLayout.DragEdge.Left, swipeLayout.findViewById(R.id.bottom_wrapper));
        swipeLayout.addSwipeListener(new SwipeLayout.SwipeListener() {
            @Override
            public void onStartOpen(SwipeLayout swipeLayout) {
                lineIsClose = false;
            }

            @Override
            public void onOpen(SwipeLayout swipeLayout) {

                lineIsClose = false;
            }

            @Override
            public void onStartClose(SwipeLayout swipeLayout) {
                lineIsClose = false;
            }

            @Override
            public void onClose(SwipeLayout swipeLayout) {
                lineIsClose  = true ;
            }

            @Override
            public void onUpdate(SwipeLayout swipeLayout, int i, int i1) {
            }

            @Override
            public void onHandRelease(SwipeLayout swipeLayout, float v, float v1) {
            }
        });

        if (temp.isCompleted()) {
            name.setTextColor(mContext.getResources().getColor(R.color.gray));
            name.setPaintFlags(name.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
            count.setPaintFlags(count.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
        } else {
            name.setTextColor(mContext.getResources().getColor(R.color.black));
            name.setPaintFlags(name.getPaintFlags() & (~Paint.STRIKE_THRU_TEXT_FLAG));
            count.setPaintFlags(count.getPaintFlags() & (~Paint.STRIKE_THRU_TEXT_FLAG));
        }
        name.setText(temp.getName());
        count.setText("" + temp.getCount());


        if (position % 2 == 0)// oylesine var
            categoryView.setBackgroundColor(Color.BLUE);
        if (position % 3 == 0)
            categoryView.setBackgroundColor(Color.RED);

        convertView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                if ( lineIsClose ){
                    gifMovieView.setVisibility(View.VISIBLE);
                final Handler handler = new Handler();
                handler.postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        gifMovieView.setVisibility(View.GONE);
                        if (!list.get(position).isCompleted()) {//false ise true yap

                            list.get(position).setCompleted(true);
                            name.setTextColor(mContext.getResources().getColor(R.color.gray));
                            name.setPaintFlags(name.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
                            count.setPaintFlags(count.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

                        } else { // true ise false yap

                            list.get(position).setCompleted(false);
                            name.setTextColor(mContext.getResources().getColor(R.color.black));
                            name.setPaintFlags(name.getPaintFlags() & (~Paint.STRIKE_THRU_TEXT_FLAG));
                            count.setPaintFlags(count.getPaintFlags() & (~Paint.STRIKE_THRU_TEXT_FLAG));

                        }

                        currentList.setProducts(list);
                        SharedPrefManager.saveList(currentList);
                    }
                }, 600);

                //saveList(gifMovieView);
            }
        }
    });
        convertView.findViewById(R.id.bottom_wrapper).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                swipeLayout.close();
                //
                // removeFromList(position);
                list.remove(position);
                notifyDataSetChanged();
            }
        });

    }

    @Override
    public int getCount() {
        return list.size();
    }

    @Override
    public Object getItem(int position) {
        return list.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }
}

3 个答案:

答案 0 :(得分:6)

我和你一样有同样的问题。我在这里找到答案:http://android-pratap.blogspot.com/2015/07/swipe-recyclerview-using.html

您可以在SurfaceView()上设置onClick。现在,您可以在不调用onClickItem的情况下滑动项目。

<android.support.design.widget.AppBarLayout
    android:id="@+id/id_appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true">

    <android.support.v7.widget.Toolbar
        android:id="@+id/id_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|enterAlways" />

    <android.support.design.widget.TabLayout
        android:id="@+id/id_tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/id_viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

答案 1 :(得分:2)

你应该使用

swipeLayout.getSurfaceView().setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
    // delete view or something you want to do
    }
});

答案 2 :(得分:0)

我遇到同样的问题,我通过以下代码解决了这个问题:

viewHolder.swipeLayout.addSwipeListener(new SimpleSwipeListener() {
        @Override
        public void onOpen(SwipeLayout layout) {

            super.onOpen(layout);
           ((Fragment)mFragment).setListViewClickable(false);
        }

        @Override
        public void onClose(SwipeLayout layout) {

            super.onClose(layout);
            mHandler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    ((Fragment) mFragment).setListViewClickable(true);
                }
            } , 100);

        }

        @Override
        public void onStartOpen(SwipeLayout layout) {
            ((Fragment)mFragment).setListViewClickable(false);
            super.onStartOpen(layout);
          }

        @Override
        public void onStartClose(SwipeLayout layout) {

            ((Fragment)mFragment).setListViewClickable(false);
            super.onStartClose(layout);
        }
    });

通常在滑动布局打开时我禁用listview单击,当滑动布局关闭时,启用listview单击一段时间后,如100 ms。