Closed
Description
@Override
public void fillValues(final Citation model, View convertView) {
TextView textTitle = (TextView)convertView.findViewById(R.id.text_data);
textTitle.setText(Html.fromHtml(model.getHtmlDisplayString()));
SwipeLayout swipeLayout = (SwipeLayout)convertView.findViewById(R.id.swipe);
swipeLayout.addSwipeDenier(new SwipeLayout.SwipeDenier() {
@Override
public boolean shouldDenySwipe(MotionEvent motionEvent) {
return true;
}
});
is still allowing the user to swipe the row. How it is possibile to fix?
Metadata
Metadata
Assignees
Labels
No labels