gpt4 book ai didi

Android:滑动列表项导致 clickOnItem

转载 作者:太空宇宙 更新时间:2023-11-03 12:05:56 26 4
gpt4 key购买 nike

我想左右滑动 ListView 的项目。为此,我使用了这个项目。

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

最佳答案

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

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

viewHolder.swipeLayout.getSurfaceView().setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(mContext, " onClick : " + item.getName() + " \n" + item.getEmailId(), Toast.LENGTH_SHORT).show();
}
});

关于Android:滑动列表项导致 clickOnItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31342649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com