Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OnFling in a ListView, Get the swiped Item info

I'd like to have in my app the same behaviour of native contacts app. Specifically I'd like to implement the swipe right for call and the swipe left for the textmsg. I've a ListView, I setted the arrayAdapter and i'va implemented the gesture detector for the onFlingMethod. I correctly intercept the swipe side and i can lauch the Call app. I need to put the item number (and other info) to the Intent, so I need to get the swiped item. Here my code.

public class Contacts extends Activity implements OnGestureListener {

    private static final String TAG = "[Contacts]";
    ArrayList < ContactInfo > mData;

    private static final int SWIPE_MIN_DISTANCE = 120;
    private static final int SWIPE_MAX_OFF_PATH = 250;
    private static final int SWIPE_THRESHOLD_VELOCITY = 200;

    /** Called when the activity is first created. */
    private GestureDetector detector = new GestureDetector(this);
    Button btnContacts;
    Button btnProfile;
    Button btnSettings;
    ImageButton btnStatus;
    HandleServer cubeServer;
    Button slideHandleButton;
    SlidingDrawer slidingDrawer;
    String filter = "n";
    ArrayAdapter < ContactInfo > adapter;
    ListView listView;


    public boolean onCreateOptionsMenu(Menu menu) {

        return true;
    }

    public boolean onOptionsItemSelected(MenuItem item) {
        return true;
    }

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.contact);

        listView = (ListView) findViewById(R.id.arrayList);
        listView.setCacheColorHint(R.color.white);

        mData = getContact();

        adapter = new ArrayAdapter < ContactInfo > (this.getApplicationContext(), R.layout.row, R.id.nome, mData) {
            public View getView(final int position, View convertView, ViewGroup parent) {
                ViewHolder viewHolder = null;
                if (convertView == null) {

                    LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                    convertView = inflater.inflate(R.layout.row, null);
                    viewHolder = new ViewHolder();
                    final ContactInfo item = getItem(position);

                    viewHolder.name.setText(item.getName());


                    convertView.setClickable(true);

                    OnClickListener myClickListener = new OnClickListener() {

                        public void onClick(View v) {
                            Intent intent = new Intent(v.getContext(), ContactTabs.class);
                            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                            //Log.i(TAG,"id value:"+item.getId());
                            intent.putExtra("id", item.getId());
                            intent.putExtra("name", item.getName());
                            //aggiungi quello che serve per gli extra ed i task
                            intent.putExtra("calendar", item.getCalendarDraw());
                            intent.putExtra("gmail", item.getGmailDraw());
                            intent.putExtra("operator", item.getOperatorDraw());
                            intent.putExtra("imgStatus", item.getImgStatusDraw());
                            startActivity(intent);
                        }
                    };

                    convertView.setOnClickListener(myClickListener);

                    convertView.setOnTouchListener(new OnTouchListener() {

                        public boolean onTouch(View view, MotionEvent e) {
                            detector.onTouchEvent(e);
                            return false;
                        }
                    });

                    return convertView;
                }
            };

            listView.setAdapter(adapter);
        }

        public boolean onDown(MotionEvent e) {
            // TODO Auto-generated method stub
            return false;
        }

        public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
            float velocityY) {
            try {
                if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH) {

                    return false;
                }
                // right to left swipe
                if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
                    //CallNativeApp cna = new CallNativeApp(getApplicationContext());
                    //cna.sendSms("11111", "");
                    Toast.makeText(getApplicationContext(), "Left Swipe", Toast.LENGTH_SHORT).show();
                } else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
                    //CallNativeApp cna = new CallNativeApp(getApplicationContext());
                    //cna.call("1111");

                    Toast.makeText(getApplicationContext(), "Right Swipe", Toast.LENGTH_SHORT).show();
                }
            } catch (Exception e) {
                // nothing
            }

            return true;
        }
        public void onLongPress(MotionEvent e) {
            // TODO Auto-generated method stub

        }
        public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,
            float distanceY) {
            // TODO Auto-generated method stub
            return true;
        }
        public void onShowPress(MotionEvent e) {
            // TODO Auto-generated method stub

        }
        public boolean onSingleTapUp(MotionEvent e) {
            // TODO Auto-generated method stub
            return true;
        }

    }
}
like image 971
Frank.paletta Avatar asked May 27 '11 10:05

Frank.paletta


1 Answers

I solve this issue with ListView.pointToPosition() method.

Here my fragment of code:

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2,
    float velocityX, float velocityY) {

    if (e2.getX() - e1.getX() > MOVE) {

        int id = list.pointToPosition((int) e1.getX(), (int) e1.getY());
        Reminder temp = (Reminder) adapter.getItem((id));
        return true;
    }

    return false;
}

First, you get the rowID from list.pointToPosition((int) e1.getX(), (int) e1.getY()); and do with it anything you want. In my case Reminder is the type of objects in my custom array adapter for list.

like image 178
budgie Avatar answered Oct 24 '22 19:10

budgie