我想将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) {
}
});
编辑:一些代码
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;
}
}
解决方法:
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.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。