Hello moderators,

RE: Android 2.0 - touchscreen drivers

For single finger motion events we typically perform the following to
initiate an input MotionEvent:

    input_report_abs(ts->input, ABS_X, xy_data.x);
    input_report_abs(ts->input, ABS_Y, xy_data.y);
    input_report_abs(ts->input, ABS_PRESSURE, xy_data.z);
    input_report_abs(ts->input, ABS_TOOL_WIDTH,10);
    input_report_key(ts->input, BTN_TOUCH, 1);
    input_sync(ts->input);

How do I extend this sequence to include additional finger x,y data,
finger identifiers and number of fingers?

Also, when will I be able to get Android platform and kernel/msm
source for 2.0 (-b eclair)?

Thank you,
Kevin

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to