Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
New multitouch patch, fully backwards-compatible and low impact
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 48 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
luke  
View profile  
(2 users)  More options Jan 13, 4:53 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 13:53:26 -0800 (PST)
Local: Tues, Jan 13 2009 4:53 pm
Subject: New multitouch patch, fully backwards-compatible and low impact
I have put together a new patch for supporting multitouch scaling on
the G1.

http://web.mit.edu/~luke_h/www/Android_MultitouchV2.zip  (driver
source, boot.img containing a rebuilt kernel, and a demo app .apk all
included)

This version is much less invasive than the previous patch.  I pushed
all multitouch support into the synaptics driver, and only have the
driver report a single event for multitouch situations, consisting of
the x and y coords set to the midpoint between the two touch points,
and the size field of the event set to the distance between the touch
point and each finger (i.e. the radius of stretch).  Size == 0 when
there is only one finger on the screen.  This patch is 100% compatible
with all current apps and the Android event pipeline, as far as I can
tell.  Apps can be written to detect multitouch events by checking the
size field, and if it is > 1.0 (the max value returned by the current
driver, although this value appears to just consist of noise
currently), then the program can initiate a multitouch operation.
Under the new system, the size values stored in MotionEvents are in
screen coordinates just like x and y.

From a user standpoint, this patch could easily give multitouch
scaling in MapViews and WebViews, but does not allow for more
complicated operations such as rotation (see my previous post for the
reason why).

Comments please from core framework developers?  I understand a driver
was checked into git for a "real" iPhone-style multitouch screen a
while back, but there doesn't appear to be any UI code checked in for
it yet, and obviously there is no announced device.  Could something
like this be pushed upstream in the meantime though to at least
support multitouch scaling on the G1?  Or is this unlikely to ever
pass?

Thanks,
Luke Hutchison


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 13, 5:01 pm
From: "Dianne Hackborn" <hack...@android.com>
Date: Tue, 13 Jan 2009 14:01:40 -0800
Local: Tues, Jan 13 2009 5:01 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

Hi, this is really cool work, but I don't think we would accept something
like this as a patch.  At the very least, re-using the size field to report
pseudo-multi-touch information is a pretty big hack.

The API I would expect to see for multi-touch would be something along the
lines of a new set of action codes for when additional fingers are down,
moved, or released, and a new field on MotionEvent for which finger that
event is for.  (So it would always be 0 for the current action codes, and
some value 1-n for the new action codes, where n is the maximum number of
fingers that can be detected.)  Then each finger would be a new distinct
MotionEvent stream, which would be delivered separately and the ones with
the new action codes would be ignored by existing applications.

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jean-Baptiste Queru  
View profile  
 More options Jan 13, 5:06 pm
From: Jean-Baptiste Queru <j...@google.com>
Date: Tue, 13 Jan 2009 14:06:33 -0800
Local: Tues, Jan 13 2009 5:06 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On the other hand, if the panel can track all fingers in a single
processing pass, it'd be unfortunate to report that as multiple
events: at some point in time the app would be in a state that doesn't
match anything that the screen has ever read, i.e. where it has the
new location for one finger but the old location for the other one.

JBQ

--
Jean-Baptiste M. "JBQ" Queru
Android Engineer, Google.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
 More options Jan 13, 5:08 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:08:32 -0800 (PST)
Local: Tues, Jan 13 2009 5:08 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
What is the size field intended for currently?

How do action codes work?  Can you just specify which codes your app
is listening for?  It sounds like you are describing some sort of "opt-
in" filter system.

On Jan 13, 5:01 pm, "Dianne Hackborn" <hack...@android.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jean-Baptiste Queru  
View profile  
 More options Jan 13, 5:14 pm
From: Jean-Baptiste Queru <j...@google.com>
Date: Tue, 13 Jan 2009 14:14:08 -0800
Local: Tues, Jan 13 2009 5:14 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Another problem is that if you put a finger down (finger 0), then
another one (finger 1), then lift the first one, the only finger being
tracked is now finger 1, and that might not work that well with
existing apps.

JBQ

--
Jean-Baptiste M. "JBQ" Queru
Android Engineer, Google.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 13, 5:15 pm
From: "Dianne Hackborn" <hack...@android.com>
Date: Tue, 13 Jan 2009 14:15:13 -0800
Local: Tues, Jan 13 2009 5:15 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

On Tue, Jan 13, 2009 at 2:08 PM, luke <luke.hu...@gmail.com> wrote:
> What is the size field intended for currently?

It is the size of the finger on the screen, for ex tip or thumb.

> How do action codes work?  Can you just specify which codes your app
> is listening for?  It sounds like you are describing some sort of "opt-
> in" filter system.

No, they are just the code identifying the action associated with the event
-- DOWN, MOVE, UP, etc.  The app looks at the code to decide what to do with
the event.

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 13, 5:16 pm
From: "Dianne Hackborn" <hack...@android.com>
Date: Tue, 13 Jan 2009 14:16:24 -0800
Local: Tues, Jan 13 2009 5:16 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

On Tue, Jan 13, 2009 at 2:14 PM, Jean-Baptiste Queru <j...@google.com> wrote:
> Another problem is that if you put a finger down (finger 0), then
> another one (finger 1), then lift the first one, the only finger being
> tracked is now finger 1, and that might not work that well with
> existing apps.

Whether this is reported as the first or second finger going up is an
implementation detail (in the screen firmware as well as the framework).

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
 More options Jan 13, 5:23 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:23:06 -0800 (PST)
Local: Tues, Jan 13 2009 5:23 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On Jan 13, 5:06 pm, Jean-Baptiste Queru <j...@google.com> wrote:

> On the other hand, if the panel can track all fingers in a single
> processing pass, it'd be unfortunate to report that as multiple
> events: at some point in time the app would be in a state that doesn't
> match anything that the screen has ever read, i.e. where it has the
> new location for one finger but the old location for the other one.

You are right, but the rate that motion events are passed along makes
this effect almost negligible...  There is a lot of messiness like
this in event processing, I have come to discover...

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
 More options Jan 13, 5:24 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:24:11 -0800 (PST)
Local: Tues, Jan 13 2009 5:24 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On Jan 13, 5:14 pm, Jean-Baptiste Queru <j...@google.com> wrote:

> Another problem is that if you put a finger down (finger 0), then
> another one (finger 1), then lift the first one, the only finger being
> tracked is now finger 1, and that might not work that well with
> existing apps.

Correct.  This is actually a hardware limitation, and needs to be
handled with smarts at some level.  Apparently the iPhone SDK leaves
it up to the user to handle this.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
 More options Jan 13, 5:27 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:27:20 -0800 (PST)
Local: Tues, Jan 13 2009 5:27 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On Jan 13, 5:15 pm, "Dianne Hackborn" <hack...@android.com> wrote:

> On Tue, Jan 13, 2009 at 2:08 PM, luke <luke.hu...@gmail.com> wrote:
> > What is the size field intended for currently?

> It is the size of the finger on the screen, for ex tip or thumb.

Not for the synaptics driver -- size information is passed in the
pressure field.  Sometimes you can convince yourself the value gets
smaller just as a touchpoint lifts off the screen, but it's a
stretch.  Also the range of values [0.0,1.0] are quantized to 15
levels at the driver level.  I tried really hard to find meaning for
the value in the size field, and just couldn't believe it was used for
anything meaningful -- and certainly the information is not reliable
enough to do anything meaningful with.  It is effectively just noise.

> > How do action codes work?  Can you just specify which codes your app
> > is listening for?  It sounds like you are describing some sort of "opt-
> > in" filter system.

> No, they are just the code identifying the action associated with the event
> -- DOWN, MOVE, UP, etc.  The app looks at the code to decide what to do with
> the event.

Oh, those codes.  That makes sense as a way of building in multitouch
without creating a major new API.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
 More options Jan 13, 5:29 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:29:15 -0800 (PST)
Local: Tues, Jan 13 2009 5:29 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On Jan 13, 5:01 pm, "Dianne Hackborn" <hack...@android.com> wrote:

> Hi, this is really cool work, but I don't think we would accept something
> like this as a patch.  At the very least, re-using the size field to report
> pseudo-multi-touch information is a pretty big hack.

No problem, totally understandable.  I will probably put this out
there as a "community hack" and see if it catches on (i.e. whether
Market apps start appearing that use it).  I am going to hack together
a map and browser apps that use this for scaling, and people can
choose whether or not to use this on their phone as a workaround,
until multitouch is officially available.

Thanks for answering my questions.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luke  
View profile  
(1 user)  More options Jan 13, 5:31 pm
From: luke <luke.hu...@gmail.com>
Date: Tue, 13 Jan 2009 14:31:51 -0800 (PST)
Local: Tues, Jan 13 2009 5:31 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Actually I have one more question if anyone can answer it -- does
anyone know for sure if the threat of being sued by Apple really is a
barrier to getting multitouch on Android?  I don't need an official
word from Google or anybody else -- I just need to know if this is
just rumor or if it is a real possibility.

Thanks!

On Jan 13, 5:29 pm, luke <luke.hu...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 13, 5:45 pm
From: "Dianne Hackborn" <hack...@android.com>
Date: Tue, 13 Jan 2009 14:45:46 -0800
Local: Tues, Jan 13 2009 5:45 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

On Tue, Jan 13, 2009 at 2:27 PM, luke <luke.hu...@gmail.com> wrote:
> Not for the synaptics driver -- size information is passed in the
> pressure field.  Sometimes you can convince yourself the value gets
> smaller just as a touchpoint lifts off the screen, but it's a
> stretch.  Also the range of values [0.0,1.0] are quantized to 15
> levels at the driver level.  I tried really hard to find meaning for
> the value in the size field, and just couldn't believe it was used for
> anything meaningful -- and certainly the information is not reliable
> enough to do anything meaningful with.  It is effectively just noise.

If we are talking about accepting a patch (and I need to emphasize, I can't
make an promises about anything here, except that the current approach will
not be accepted), it can't be just designed around what the synaptics driver
happens to currently do.

What you are doing is great work for shimming in a multi-touch demo that
touches as little code as possible.  For a patch that would add multitouch
APIs, though, the approach is much different and should result in an API
that is clear and easy to understand and sufficient for a wide variety of
devices.  There would also be other things to deal with, for example a way
for an app to find out up-front if the screen is capable of multi-touch.

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Disconnect  
View profile  
(1 user)  More options Jan 13, 7:08 pm
From: Disconnect <dc.disconn...@gmail.com>
Date: Tue, 13 Jan 2009 19:08:48 -0500
Local: Tues, Jan 13 2009 7:08 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

Great work btw :)

And everything I have seen says apple patented -gestures-. EG pinch to zoom,
etc. So .. ymmv. But it cannot prevent general multitouch from working
(ahem, ms surface) or - likely - even stretch to zoom (prior art)..


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tanu  
View profile  
(1 user)  More options Jan 16, 2:29 am
From: Tanu <misstan...@gmail.com>
Date: Thu, 15 Jan 2009 23:29:51 -0800 (PST)
Local: Fri, Jan 16 2009 2:29 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
plzzz... can u tell me....
how to install the bootimage file inthe windows environmet....
how to run the multitouch event application........

thanks and regards
Tanuja

On Jan 14, 5:08 am, Disconnect <dc.disconn...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Miroslav Mandov  
View profile  
 More options Jan 26, 3:09 am
From: Miroslav Mandov <miro...@gmail.com>
Date: Mon, 26 Jan 2009 00:09:55 -0800 (PST)
Local: Mon, Jan 26 2009 3:09 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

> For a patch that would add multitouch
> APIs, though, the approach is much different and should result in an API
> that is clear and easy to understand and sufficient for a wide variety of
> devices.  There would also be other things to deal with, for example a way
> for an app to find out up-front if the screen is capable of multi-touch.

> --
> Dianne Hackborn

Could it be possible to add an "option" in so "settings", where the
user could select whether his device supports MT or just a single
touch? In this way Android would have this nice feature for devices
that support it, and be able to work as it is now for devices that are
not MT capable.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 26, 1:14 pm
From: Dianne Hackborn <hack...@android.com>
Date: Mon, 26 Jan 2009 10:14:36 -0800
Local: Mon, Jan 26 2009 1:14 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

For hardward that doesn't support multitouch this would need to always be
false, and if it does I don't see why you would want to turn it off, so I'm
not sure I the point of a user setting for it...?

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Miroslav Mandov  
View profile  
 More options Jan 27, 7:41 am
From: Miroslav Mandov <miro...@gmail.com>
Date: Tue, 27 Jan 2009 04:41:53 -0800 (PST)
Local: Tues, Jan 27 2009 7:41 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
On Jan 26, 8:14 pm, Dianne Hackborn <hack...@android.com> wrote:

> For hardward that doesn't support multitouch this would need to always be
> false, and if it does I don't see why you would want to turn it off, so I'm
> not sure I the point of a user setting for it...?

May be I did not explain my point correctly.
My idea was to have the MT functionality in Android OS and at the same
time to keep the existing GUI for devices that are not MT capable.
Android concept is that all applications should be compatible with all
Android devices that could lead to the bad idea to keep it only as
"single touch" platform.
Yes, it could be an "option" that the manufacturer is selecting, or
Android can select it based on the screen drivers.

Unfortunately I just saw that Apple was awarded "Touch screen device,
method, and graphical user interface for determining commands by
applying heuristics" patent:
http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&p=1...

BTW I am using JF's 1.41 version of ADP1, which implements Luke's MT
and it works quite good.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jean-Baptiste Queru  
View profile  
 More options Jan 27, 7:51 am
From: Jean-Baptiste Queru <j...@google.com>
Date: Tue, 27 Jan 2009 04:51:20 -0800
Local: Tues, Jan 27 2009 7:51 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Please don't discuss patents on this list. Thanks.

JBQ

--
Jean-Baptiste M. "JBQ" Queru
Android Engineer, Google.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 27, 12:43 pm
From: Dianne Hackborn <hack...@android.com>
Date: Tue, 27 Jan 2009 09:43:17 -0800
Local: Tues, Jan 27 2009 12:43 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

Well yes of course if or when multi-touch is introduced into the platform,
you will NOT be able to rely on it being there.  Android will be running on
devices without a multitouch screen, you can count on it.

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob  
View profile  
 More options Jan 29, 9:04 pm
From: Bob <bob.eb...@gmail.com>
Date: Thu, 29 Jan 2009 18:04:26 -0800 (PST)
Local: Thurs, Jan 29 2009 9:04 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Engadget just had an interesting article that discussed the Apple
"multi-touch" patent, suggesting that pinch/zoom isn't claimed.
http://www.engadget.com/2009/01/28/apple-vs-palm-the-in-depth-analysis/

Please think about soft keyboards when considering multi-touch APIs,
where the problem isn't detecting the distance between two finger, but
rather is allowing a 2nd finger (or thumb) to come down on a 2nd key
before the first finger (or thumb) has been released.  The proposed
API to provide only a centroid and the distance between fingers won't
work at all for this sort of application.

I think you'd ultimately want to package this as additional
GestureDetector subclasses, depending on whether the type of gesture
detection wanted was pinch/zoom or multiple/overlapping taps.
Keyboards (and maybe games) would use one class, browsers another.

Providing the right information from a touch panel to drive either
detector might be challenging, especially if the panel provides
'unpaired' x and y coordinates rather than individual touch locations,
but I believe it could be done.

On Jan 13, 4:08 pm, Disconnect <dc.disconn...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dianne Hackborn  
View profile  
 More options Jan 29, 9:05 pm
From: Dianne Hackborn <hack...@android.com>
Date: Thu, 29 Jan 2009 18:05:44 -0800
Local: Thurs, Jan 29 2009 9:05 pm
Subject: Re: New multitouch patch, fully backwards-compatible and low impact

Please don't talk about patents on this list, thanks.

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Al Sutton  
View profile  
 More options Jan 30, 2:20 am
From: Al Sutton <a...@funkyandroid.com>
Date: Fri, 30 Jan 2009 07:20:11 +0000
Local: Fri, Jan 30 2009 2:20 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Thread already doing the patent thing to death on -developers;

http://groups.google.com/group/android-developers/browse_thread/threa...

It probably should go to -discuss if anyone wants to continue it.

Al.

--
======
Funky Android Limited is registered in England & Wales with the
company number  6741909. The registered head office is Kemp House,
152-160 City Road, London,  EC1V 2NX, UK.

The views expressed in this email are those of the author and not
necessarily those of Funky Android Limited, it's associates, or it's
subsidiaries.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Hamilton  
View profile  
 More options Jan 30, 10:08 am
From: Jeff Hamilton <j...@android.com>
Date: Fri, 30 Jan 2009 07:08:54 -0800
Local: Fri, Jan 30 2009 10:08 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
Please do not discuss patents on any of the lists. Thanks.

-Jeff


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Al Sutton  
View profile  
 More options Jan 30, 10:23 am
From: Al Sutton <a...@funkyandroid.com>
Date: Fri, 30 Jan 2009 15:23:18 +0000
Local: Fri, Jan 30 2009 10:23 am
Subject: Re: New multitouch patch, fully backwards-compatible and low impact
So where would you prefer discussions about specific patents and their potential effects on functionality to be discussed?

Al.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 48   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google