[android-developers] Re: WebView - can't set its position..

2013-07-07 Thread AmitNHB
OK, got it:

*webView = new WebView(this);
webView.setWebViewClient(new WebViewClient());RelativeLayout.LayoutParams 
webViewParams= new RelativeLayout.LayoutParams(800, 240);
webViewParams.addRule(RelativeLayout.CENTER_IN_PARENT);*



On Monday, July 8, 2013 3:59:37 AM UTC+3, AmitNHB wrote:
>
> Hello, I feel this should be very basic but I can't seem to be able to set 
> the position of a WebView. I have a my surface (which extends SurfaceView) 
> and an AdView at the bottom and now I want to add a WebView and position it 
> at a certain height on the screen. I do this, trying to position my web 
> view at the center:
>
> webView = new WebView(this);
> webView.setWebViewClient(new WebViewClient());
> webView.setVisibility(View.GONE);LayoutParams webViewParams = new 
> LayoutParams(800,240);
> webViewParams.setMargins(0, 120, 800, 360); 
>
>
> And the last line doesn't seem to have any effect as the view starts at the 
> very top.
>
> I also tried using the gravity field and setting it to GRAVITY.CENTER and it 
> did not matter.
>
> Here's the full code: 
> (I'm using a device with a 800X480 resolution and I'm in landscape more, and 
> for now 
> I'm just trying to position my webview at the center taking up half the 
> display' space.)
>
> *
> **private MySurface surface;private AdView adView;private WebView
> ...
> // create the ad view
> adView = new AdView(this, AdSize.SMART_BANNER, AD_MOB_ID);
> adView.setAdListener(new MyAdListener());
> // create the surface
> surface = MySurface.getRef(this);
> // set a listener for touch event
> surface.setOnTouchListener(this);
> // create the web view
> webView = new WebView(this);
> webView.setWebViewClient(new WebViewClient());LayoutParams webViewParams = 
> new LayoutParams(800,240); // this works
> webViewParams.setMargins(0, 120, 800, 360); // this does 
> nothing...
> // create a relative layoutRelativeLayout l = new RelativeLayout(this);
> // add the surface
> l.addView(surface);
> // add the ad view at the bottomAdView.LayoutParams adViewParams = new 
> AdView.LayoutParams(AdView.LayoutParams.WRAP_CONTENT,AdView.LayoutParams.WRAP_CONTENT);
>
> adViewParams.addRule(AdView.ALIGN_PARENT_BOTTOM);
>
> l.addView(adView, adViewParams);
>
> l.addView(webView, webViewParams);
>
> setContentView(l);  
> // load an ad//loadAdMob(); *
>
> *  *

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Large amount of orders "not complete" over this weekend

2013-07-07 Thread Nathan


On Sunday, July 7, 2013 7:25:43 AM UTC-6, niko20 wrote:
>
> I had over 34 orders yesterday, but most of them are in the "non-green" 
> state yet for some reason. I only got "payout" of about 10 of them.
>
> Anyone else seeing this issue? Usually they turn full green (both dots are 
> green in the google checkout report list, shipped and charged - right now 
> shipped is green but charged is not for some reason)
>
>
On July 4th, I had about a hundred orders for reason "Other" and not 
explained below. Since that time, I agree that orders have been slow to 
charge. About 36 hours after shipping, when 6 hours is more normal. 

Revenue looks small compared roughly to the number of orders. 

Nathan 

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: WebView - can't set its position..

2013-07-07 Thread AmitNHB
Please ignore this line: 


*webView**.setVisibility(View.GONE**);*

I'm setting it back to visible later on and like I said, the view starts at the 
very top instead of at 120.


On Monday, July 8, 2013 3:59:37 AM UTC+3, AmitNHB wrote:
>
> Hello, I feel this should be very basic but I can't seem to be able to set 
> the position of a WebView. I have a my surface (which extends SurfaceView) 
> and an AdView at the bottom and now I want to add a WebView and position it 
> at a certain height on the screen. I do this, trying to position my web 
> view at the center:
>
> webView = new WebView(this);
> webView.setWebViewClient(new WebViewClient());
> webView.setVisibility(View.GONE);LayoutParams webViewParams = new 
> LayoutParams(800,240);
> webViewParams.setMargins(0, 120, 800, 360); 
>
>
> And the last line doesn't seem to have any effect as the view starts at the 
> very top.
>
> I also tried using the gravity field and setting it to GRAVITY.CENTER and it 
> did not matter.
>
> Here's the full code: 
> (I'm using a device with a 800X480 resolution and I'm in landscape more, and 
> for now 
> I'm just trying to position my webview at the center taking up half the 
> display' space.)
>
> *
> **private MySurface surface;private AdView adView;private WebView
> ...
> // create the ad view
> adView = new AdView(this, AdSize.SMART_BANNER, AD_MOB_ID);
> adView.setAdListener(new MyAdListener());
> // create the surface
> surface = MySurface.getRef(this);
> // set a listener for touch event
> surface.setOnTouchListener(this);
> // create the web view
> webView = new WebView(this);
> webView.setWebViewClient(new WebViewClient());LayoutParams webViewParams = 
> new LayoutParams(800,240); // this works
> webViewParams.setMargins(0, 120, 800, 360); // this does 
> nothing...
> // create a relative layoutRelativeLayout l = new RelativeLayout(this);
> // add the surface
> l.addView(surface);
> // add the ad view at the bottomAdView.LayoutParams adViewParams = new 
> AdView.LayoutParams(AdView.LayoutParams.WRAP_CONTENT,AdView.LayoutParams.WRAP_CONTENT);
>
> adViewParams.addRule(AdView.ALIGN_PARENT_BOTTOM);
>
> l.addView(adView, adViewParams);
>
> l.addView(webView, webViewParams);
>
> setContentView(l);  
> // load an ad//loadAdMob(); *
>
> *  *

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] WebView - can't set its position..

2013-07-07 Thread AmitNHB
Hello, I feel this should be very basic but I can't seem to be able to set 
the position of a WebView. I have a my surface (which extends SurfaceView) 
and an AdView at the bottom and now I want to add a WebView and position it 
at a certain height on the screen. I do this, trying to position my web 
view at the center:

webView = new WebView(this);
webView.setWebViewClient(new WebViewClient());
webView.setVisibility(View.GONE);LayoutParams webViewParams = new 
LayoutParams(800,240);
webViewParams.setMargins(0, 120, 800, 360); 


And the last line doesn't seem to have any effect as the view starts at the 
very top.

I also tried using the gravity field and setting it to GRAVITY.CENTER and it 
did not matter.

Here's the full code: 
(I'm using a device with a 800X480 resolution and I'm in landscape more, and 
for now 
I'm just trying to position my webview at the center taking up half the 
display' space.)

*
**private MySurface surface;private AdView adView;private WebView
...
// create the ad view
adView = new AdView(this, AdSize.SMART_BANNER, AD_MOB_ID);
adView.setAdListener(new MyAdListener());
// create the surface
surface = MySurface.getRef(this);
// set a listener for touch event
surface.setOnTouchListener(this);
// create the web view
webView = new WebView(this);
webView.setWebViewClient(new WebViewClient());LayoutParams webViewParams = new 
LayoutParams(800,240); // this works
webViewParams.setMargins(0, 120, 800, 360); // this does nothing...
// create a relative layoutRelativeLayout l = new RelativeLayout(this);
// add the surface
l.addView(surface);
// add the ad view at the bottomAdView.LayoutParams adViewParams = new 
AdView.LayoutParams(AdView.LayoutParams.WRAP_CONTENT,AdView.LayoutParams.WRAP_CONTENT);

adViewParams.addRule(AdView.ALIGN_PARENT_BOTTOM);

l.addView(adView, adViewParams);

l.addView(webView, webViewParams);

setContentView(l);  
// load an ad//loadAdMob(); *

*  *

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] how to fire intent when net is connected

2013-07-07 Thread Kristopher Micinski
Sure. That's the Android specific version of the thing to which I was
referring
On Jul 7, 2013 2:27 AM, "Yaron Reinharts"  wrote:

>  Or javamail-android:
> http://code.google.com/p/javamail-android/
>
> On 07/04/2013 07:16 PM, Kristopher Micinski wrote:
>
> On Thu, Jul 4, 2013 at 1:51 AM, vinay kumar  
>  wrote:
>
>  Probably you want to send the email without user interaction.
> This can't be achieved with android Intent which need user interaction
> before sending the email.
>
>
> There are ways to send email other than an intent: you could use a
> Java SMTP library, for example...
>
> Kris
>
>
>
>
> --
> Yaron Reinharts
> Smart Drive 
> Applicationshttp://www.poncho.co.il/gateaway.phphttps://market.android.com/details?id=com.poncho.gsm.gate.activities
>
>   --
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google direction API

2013-07-07 Thread TreKing
On Sat, Jul 6, 2013 at 8:52 PM, Sunny  wrote:

> It doesn't matter whether you put a comma or a space, the behavior is :
>  it works well with a space or comma when you are invoking it on the
> browser. It does not work when you do the same from an android code.


Then there is something wrong with your Android code. Perhaps the fact that
you are using an HttpPost object. I believe this call is a "GET".

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google direction API

2013-07-07 Thread Sunny
Hi TreKing,
thank you for your response. 
to answer to your question, I did removed the space and tried with a comma 
- there is no change in the behavior. 
I am wondering if you can think of any tips or others can chip in..  

i posted this question at multiple sites. I will let you know if I get it 
to work or someone else responds with a solution. so far no one did... uggh 
:-(


On Saturday, July 6, 2013 6:52:09 PM UTC-7, Sunny wrote:
>
> Hi TreKing,
> It doesn't matter whether you put a comma or a space, the behavior is : 
>  it works well with a space or comma when you are invoking it on the 
> browser. It does not work when you do the same from an android code. I wish 
> the error response was something like illegal argument or not found etc but 
> here the response is REQUEST_DENIED. That is what is frustrating. 
>
> thanks
> Sunny
>
> On Saturday, July 6, 2013 4:51:16 PM UTC-7, TreKing wrote:
>>
>>
>> On Sat, Jul 6, 2013 at 4:19 PM, Sunny  wrote:
>>
>>> However if you remove the space btw the Lat & Lnt, it would not work and 
>>> the status will be NOT FOUND.
>>
>>
>> Well, you're not just removing the space and thus combining the two 
>> values, are you? You're supposed to separate them with a comma:
>>
>>
>> http://maps.googleapis.com/maps/api/directions/xml?origin=37.2345487,-121.5840723&destination=37.236064,-121.961595&sensor=false
>>
>>
>> -
>> TreKing  - Chicago 
>> transit tracking app for Android-powered devices
>>  
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Large amount of orders "not complete" over this weekend

2013-07-07 Thread b0b


On Sunday, 7 July 2013 15:25:43 UTC+2, niko20 wrote:
>
> I had over 34 orders yesterday, but most of them are in the "non-green" 
> state yet for some reason. I only got "payout" of about 10 of them.
>
> Anyone else seeing this issue? Usually they turn full green (both dots are 
> green in the google checkout report list, shipped and charged - right now 
> shipped is green but charged is not for some reason)
>
>
>
Something similar happened to me a few days ago. For a few hours, Google 
Wallet auto-cancelled every order (sending an email as such to customers, 
and to me with the dreaded "Order #number has been cancelled by Google") 
until it came back to normal.
I suspect sometimes there are intermittent Google Wallet issues processing 
orders. Annoying.
 

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: USBConnection: bulkTransfer OUT => after sending 10-15 x Data's every 4 seconds = USB is disconnected, every time.

2013-07-07 Thread AndroidYourself

>
> UsbDeviceConnection usbConnection = usbManager.openDevice(device); 
>
>
> UsbInterface usbInterface = device.getInterface(0);
>
>
> UsbEndpoint usbEndpointIN = null;
>
> UsbEndpoint usbEndpointOUT = null;
>
>
> for (int e = 0; e < usbInterface.getEndpointCount(); e++) {
>
>
> UsbEndpoint ep = usbInterface.getEndpoint(e);
>
>
> if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_INT) {
>
> if (ep.getDirection() == UsbConstants.USB_DIR_IN) usbEndpointIN = ep;
>
> else usbEndpointOUT = ep;
>
> }
>
> }
>
>  int receive = -1;
>
> temp = ByteBuffer.allocate(16);
>
> while(true) {
>
>
> int send = usbConnection.bulkTransfer(usbEndpointOUT, buf, buf.length, 
> 1000);
>
>
> Log.i("Test","" + send);
>
>  receive = usbConnection.bulkTransfer(usbEndpointIN, buffer.array(), 
> buffer.array().length, 1000);  
>
>
> Log.i("Test","" + receive);
>
>
> }
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Large amount of orders "not complete" over this weekend

2013-07-07 Thread AndroidYourself

Same here. Income amount drops about 50% the last 2 days.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Large amount of orders "not complete" over this weekend

2013-07-07 Thread niko20
In fact I haven't had an order finish "charged" since July 4th at 5pm or 
so. Since then, they are all shipped but not charged. I've never seen this 
happen before


On Sunday, July 7, 2013 7:25:43 AM UTC-6, niko20 wrote:
>
> I had over 34 orders yesterday, but most of them are in the "non-green" 
> state yet for some reason. I only got "payout" of about 10 of them.
>
> Anyone else seeing this issue? Usually they turn full green (both dots are 
> green in the google checkout report list, shipped and charged - right now 
> shipped is green but charged is not for some reason)
>
>
> -niko
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Large amount of orders "not complete" over this weekend

2013-07-07 Thread niko20
I had over 34 orders yesterday, but most of them are in the "non-green" 
state yet for some reason. I only got "payout" of about 10 of them.

Anyone else seeing this issue? Usually they turn full green (both dots are 
green in the google checkout report list, shipped and charged - right now 
shipped is green but charged is not for some reason)


-niko

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Location Listener event when not online

2013-07-07 Thread Piren
It doesn't need internet. Verify that you've asked for the FINE GPS 
permission (rather than coarse which does need a connection) and i'd also 
make sure to have a wake lock (a better approach is to user an alarm to 
query the location periodically) otherwise i doubt onLocationChanged would 
be called after a short while. 

On Sunday, July 7, 2013 2:41:21 AM UTC+3, Gary Blakely wrote:
>
> I write apps for both Windows Phone in C# and Android in Java.  I have 
> similar apps, on each marketplace, that both use the GPS to track movement 
> as the phone moves about.  When the phone is out moving around, the 
> internet connectivity, of course, goes in and out.
>
> Both versions of my app transmit the GPS readings to my cloud server REST 
> service where they are recorded on to a database.  If the app has no 
> internet connection, it saves the GPS locations on the phone and then, when 
> the internet connection comes back, it bursts what it has to the cloud 
> server.  This process works great in Windows phone.
>
> But with Android, when there is no internet connection, my 
> onLocationChanged event in my LocationListener does not get triggered as 
> the phone moves about.  It's working as though the GPS gets turned off when 
> there is no internet signal.  That makes no sense to me.  Is it supposed to 
> work this  way?  Why would the GPS need an internet connection to work?
> Thanks,
> Gary
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] GamesClient.Builder NoClassDefFoundError in runtime

2013-07-07 Thread davidemo89
Hi, I've fixed it adding this
 

on my manifest =)


On 7 July 2013 08:09, Yaron Reinharts  wrote:

> Right click project properties, Android.
> Make sure you are targeting Google API X.X instead of Android X.X.
>
> Hope this helps
> /Yaron
> On 07/03/2013 11:54 AM, Davide Moriello wrote:
>
>> java.lang.**NoClassDefFoundError: com.google.android.gms.games.**
>> GamesClient$Builder
>>
>
>
> --
> Yaron Reinharts
> Smart Drive Applications
> http://www.poncho.co.il/**gateaway.php
> https://market.android.com/**details?id=com.poncho.gsm.**gate.activities
>
>
>
> --
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to 
> android-developers@**googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+**unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/**group/android-developers?hl=en
> --- You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/**
> topic/android-developers/**j1n0tOiNL9I/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+**unsubscr...@googlegroups.com
> .
> For more options, visit 
> https://groups.google.com/**groups/opt_out
> .
>
>
>


-- 
Davide Moriello
Video Factory D&D
http://www.video-factory.it

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.