8

我想在我的应用程序中拥有与本机联系人应用程序相同的行为。具体来说,我想为通话实现向右滑动,为 textmsg 实现向左滑动。我有一个 ListView,我设置了 arrayAdapter,并为 onFlingMethod 实现了手势检测器。我正确拦截了滑动侧,我可以启动呼叫应用程序。我需要将项目编号(和其他信息)放入 Intent,所以我需要获取刷过的项目。这是我的代码。

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

    }
}
4

3 回答 3

7

我用方法解决了这个问题ListView.pointToPosition()

这是我的代码片段:

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

首先,您从中获取 rowIDlist.pointToPosition((int) e1.getX(), (int) e1.getY());并对其进行任何您想要的操作。在我的情况下,提醒是我的自定义数组适配器列表中的对象类型。

于 2012-08-21T11:32:37.183 回答
0

我假设这样做的方法是将 GestureListener 添加到行中,就像使用 OnClickListener 一样,而不是主要活动。

如果您有一个很大的列表,那将意味着很多 GestureListeners 并且可能会影响性能。在这种情况下,您最好使用滑动位置和视图来计算已滑动的视图。

于 2012-06-26T13:01:57.913 回答
0

最后,当在列表视图上向左或向右滑动时,我得到了解决方案获取索引.... @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {

        boolean result = false;
        try {
            float diffY = e2.getY() - e1.getY();
            float diffX = e2.getX() - e1.getX();
            if (Math.abs(diffX) > Math.abs(diffY)) {
                if (Math.abs(diffX) > SWIPE_THRESHOLD && Math.abs(velocityX) > SWIPE_VELOCITY_THRESHOLD) {
                    if (diffX > 0) {
                         int id = list.pointToPosition((int) e1.getX(), (int) e1.getY());
                          task = (TaskClass) adapter.getItem((id));
                         Log.e("Result", "Result..."+task.toString());
                        onSwipeRight(task.milestonetask);
                    } else {
                         int id = list.pointToPosition((int) e1.getX(), (int) e1.getY());
                          task = (TaskClass) adapter.getItem((id));
                        onSwipeLeft(task.milestonetask);
                    }
                }
            } else {
                if (Math.abs(diffY) > SWIPE_THRESHOLD && Math.abs(velocityY) > SWIPE_VELOCITY_THRESHOLD) {
                    if (diffY > 0) {
                        onSwipeBottom();
                    } else {
                        onSwipeTop();
                    }
                }
            }
        } catch (Exception exception) {
            exception.printStackTrace();
        }
        return result;
    }
于 2014-02-01T08:36:15.347 回答