Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread HK
I think you mean:
popup.getWindow().setBackgroundDrawable(new 
ColorDrawable(android.graphics.Color.TRANSPARENT));

I have tried this, but it doesn't work.
thanks.

On Tuesday, September 4, 2012 3:18:37 PM UTC+9, MagouyaWare wrote:
>
> I have activity A running. I want to start my new activity B so that 
>> activity A is also running. Is this possible ?
>>
>> Normally, when activity B is started, activity A is put on hold and 
>> onPause is called. I don't want this to happen. But instead I want activity 
>> A running normally and on top activity B running.
>>
>> I don't have control over activity A. And activity B is only for 
>> displaying Alert dialogs.
>>
>> Is this possible in Android ?
>>
>
> Sorry, I don't think this is possible... Actually I just thought of a 
> scenario where it might be possible.  If you make Activity B have a 
> trasparent (or semi-transparent) background then onPause() might not get 
> called.  I have not verified that is the case, but you could try it and see.
>
> Thanks,
> Justin Anderson
> MagouyaWare Developer
> http://sites.google.com/site/magouyaware
>
>
> On Mon, Sep 3, 2012 at 11:59 PM, HK  >wrote:
>
>> Hi Jugni,
>>
>> Yes, I know. That's the reason  I am asking if its possible.
>>
>> As I mentioned, I don't have control over Activity A, only B. Activity A 
>> doesn't belong to me. My activity is activity B.
>>
>> I didn't understand 'use class file'. Can you please explain in detail ?
>>
>> thanks.
>>
>>
>> On Tuesday, September 4, 2012 2:33:33 PM UTC+9, jugni wrote:
>>>
>>> Hello HK,
>>>
>>> If you know the android life cycle then you may know that when we go to 
>>> next activity then first activity should be on pause.So if you want the 
>>> alert dialog then you can also show in the same activity.So why you create 
>>> the new activity.Or if you want to handle different dialog thenuse the 
>>> class file and then just call the class file from activity so activity will 
>>> be running and alert dialog also popup.
>>>
>>  -- 
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to 
>> android-d...@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 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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread HK
Because, I don't want onPause to be called of the current running activity. 
This will show background black.
My activity B is started from a service and is only meant for Alert dialogs 
and nothing else. So I don't want activity A to go into onPause and show 
background black.

On Tuesday, September 4, 2012 3:16:57 PM UTC+9, TreKing wrote:
>
> On Tue, Sep 4, 2012 at 1:26 AM, HK >wrote:
>
>> Normally, when activity B is started, activity A is put on hold and 
>> onPause is called. I don't want this to happen. 
>
>
> And why not ... ?
>
>
> -
> 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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread Justin Anderson
>
> I have activity A running. I want to start my new activity B so that
> activity A is also running. Is this possible ?
>
> Normally, when activity B is started, activity A is put on hold and
> onPause is called. I don't want this to happen. But instead I want activity
> A running normally and on top activity B running.
>
> I don't have control over activity A. And activity B is only for
> displaying Alert dialogs.
>
> Is this possible in Android ?
>

Sorry, I don't think this is possible... Actually I just thought of a
scenario where it might be possible.  If you make Activity B have a
trasparent (or semi-transparent) background then onPause() might not get
called.  I have not verified that is the case, but you could try it and see.

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Mon, Sep 3, 2012 at 11:59 PM, HK  wrote:

> Hi Jugni,
>
> Yes, I know. That's the reason  I am asking if its possible.
>
> As I mentioned, I don't have control over Activity A, only B. Activity A
> doesn't belong to me. My activity is activity B.
>
> I didn't understand 'use class file'. Can you please explain in detail ?
>
> thanks.
>
>
> On Tuesday, September 4, 2012 2:33:33 PM UTC+9, jugni wrote:
>>
>> Hello HK,
>>
>> If you know the android life cycle then you may know that when we go to
>> next activity then first activity should be on pause.So if you want the
>> alert dialog then you can also show in the same activity.So why you create
>> the new activity.Or if you want to handle different dialog thenuse the
>> class file and then just call the class file from activity so activity will
>> be running and alert dialog also popup.
>>
>  --
> 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 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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread TreKing
On Tue, Sep 4, 2012 at 1:26 AM, HK  wrote:

> Normally, when activity B is started, activity A is put on hold and
> onPause is called. I don't want this to happen.


And why not ... ?

-
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

Re: [android-developers] Activity class extends ListActivity instead of Activity invokes RuntimeException

2012-09-03 Thread TreKing
On Tue, Sep 4, 2012 at 1:35 AM, David Brown  wrote:

> The RuntimeException displays: Your content must have a ListView whose id
> attribute is 'android.R.id.list'


What part of that is unclear to you?

-
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

[android-developers] Adding Icons in ListView

2012-09-03 Thread Ravin


I’m having some difficulty laying out a couple of ImageView objects within 
a ListView. The idea is to lay them out next to the text. The method I’m 
using is to override the getView method within the related adapter class 
for the ListView. I’m casting the view returned from the parent as a 
LinearLayout and then adding the ImageViews using addView. 

This method does seem to work but regardless of how I lay the ImageViews 
out they always end up laid out stacked vertically even though the position 
horizontally is where I want it to be.

I tried using setOrientation set to horizontal and the ImageViews disappear 
completely.

Any ideas what I’m doing wrong.

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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread HK
Hi Jugni,

Yes, I know. That's the reason  I am asking if its possible.

As I mentioned, I don't have control over Activity A, only B. Activity A 
doesn't belong to me. My activity is activity B.

I didn't understand 'use class file'. Can you please explain in detail ?

thanks.

On Tuesday, September 4, 2012 2:33:33 PM UTC+9, jugni wrote:
>
> Hello HK,
>
> If you know the android life cycle then you may know that when we go to 
> next activity then first activity should be on pause.So if you want the 
> alert dialog then you can also show in the same activity.So why you create 
> the new activity.Or if you want to handle different dialog thenuse the 
> class file and then just call the class file from activity so activity will 
> be running and alert dialog also popup.
>

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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread HK
As I mentioned, I don't have control over A, only B.
I don't want A's onPause called when B is started.
I didn't understand your second bullet:
  "or try to read and do about intent and apply it..."

thanks.

On Tuesday, September 4, 2012 2:31:18 PM UTC+9, Ibrahim wrote:
>
>
>- if you want to run activity B then do intent on A..
>-   or try to read and do about intent and apply it...
>
>
> On 4 September 2012 10:56, HK > wrote:
>
>> Hi,
>>
>> I have activity A running. I want to start my new activity B so that 
>> activity A is also running. Is this possible ?
>>
>> Normally, when activity B is started, activity A is put on hold and 
>> onPause is called. I don't want this to happen. But instead I want activity 
>> A running normally and on top activity B running.
>>
>> I don't have control over activity A. And activity B is only for 
>> displaying Alert dialogs.
>>
>> Is this possible in Android ?
>>
>> thank you.
>>
>> -- 
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to 
>> android-d...@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 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

Re: [android-developers] Activity class extends ListActivity instead of Activity invokes RuntimeException

2012-09-03 Thread jagruti sangani
In your xml file please change the id of listview to list.So it will solve
the error.

On Tue, Sep 4, 2012 at 11:05 AM, David Brown  wrote:

>
>- I have a humble little app that successfully logs into a blog.
>- The HTML returned is scraped successfully into a TextView instance.
>- Attempts to use a ListView instead are failing miserably @ runtime
>- The RuntimeException displays: Your content must have a ListView
>whose id attribute is 'android.R.id.list'
>- Attempts to rectify this sad situation just changes the
>RuntimeException to something other.
>
>
> 09-03 23:59:39.016: ERROR/AndroidRuntime(634): FATAL EXCEPTION: main
>> java.lang.RuntimeException: Unable to start activity
>> ComponentInfo{name.davidwbrown/name.davidwbrown.PebbleActivity}:
>> java.lang.RuntimeException: Your content must have a ListView whose id
>> attribute is 'android.R.id.list'
>> at
>> android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
>> at
>> android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
>> at android.app.ActivityThread.access$600(ActivityThread.java:130)
>> at
>> android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
>> at android.os.Handler.dispatchMessage(Handler.java:99)
>> at android.os.Looper.loop(Looper.java:137)
>> at android.app.ActivityThread.main(ActivityThread.java:4745)
>> at java.lang.reflect.Method.invokeNative(Native Method)
>> at java.lang.reflect.Method.invoke(Method.java:511)
>> at
>> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
>> at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
>> at dalvik.system.NativeStart.main(Native Method)
>> Caused by: java.lang.RuntimeException: Your content must have a
>> ListView whose id attribute is 'android.R.id.list'
>> at
>> android.app.ListActivity.onContentChanged(ListActivity.java:243)
>> at
>> com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:259)
>> at android.app.Activity.setContentView(Activity.java:1867)
>> at
>> name.davidwbrown.PebbleActivity.onCreate(PebbleActivity.java:42)
>>
>  --
> 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




-- 
Regards
jagruti Sangani
*iNextrix Technologies*

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

[android-developers] Activity class extends ListActivity instead of Activity invokes RuntimeException

2012-09-03 Thread David Brown

   
   - I have a humble little app that successfully logs into a blog.
   - The HTML returned is scraped successfully into a TextView instance.
   - Attempts to use a ListView instead are failing miserably @ runtime
   - The RuntimeException displays: Your content must have a ListView whose 
   id attribute is 'android.R.id.list'
   - Attempts to rectify this sad situation just changes the 
   RuntimeException to something other.


09-03 23:59:39.016: ERROR/AndroidRuntime(634): FATAL EXCEPTION: main
> java.lang.RuntimeException: Unable to start activity 
> ComponentInfo{name.davidwbrown/name.davidwbrown.PebbleActivity}: 
> java.lang.RuntimeException: Your content must have a ListView whose id 
> attribute is 'android.R.id.list'
> at 
> android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
> at 
> android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
> at android.app.ActivityThread.access$600(ActivityThread.java:130)
> at 
> android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
> at android.os.Handler.dispatchMessage(Handler.java:99)
> at android.os.Looper.loop(Looper.java:137)
> at android.app.ActivityThread.main(ActivityThread.java:4745)
> at java.lang.reflect.Method.invokeNative(Native Method)
> at java.lang.reflect.Method.invoke(Method.java:511)
> at 
> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
> at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
> at dalvik.system.NativeStart.main(Native Method)
> Caused by: java.lang.RuntimeException: Your content must have a 
> ListView whose id attribute is 'android.R.id.list'
> at android.app.ListActivity.onContentChanged(ListActivity.java:243)
> at 
> com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:259)
> at android.app.Activity.setContentView(Activity.java:1867)
> at name.davidwbrown.PebbleActivity.onCreate(PebbleActivity.java:42)
>

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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread jagruti sangani
Hello HK,

If you know the android life cycle then you may know that when we go to
next activity then first activity should be on pause.So if you want the
alert dialog then you can also show in the same activity.So why you create
the new activity.Or if you want to handle different dialog thenuse the
class file and then just call the class file from activity so activity will
be running and alert dialog also popup.

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

Re: [android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread Ibrahim Sada
   - if you want to run activity B then do intent on A..
   -   or try to read and do about intent and apply it...


On 4 September 2012 10:56, HK  wrote:

> Hi,
>
> I have activity A running. I want to start my new activity B so that
> activity A is also running. Is this possible ?
>
> Normally, when activity B is started, activity A is put on hold and
> onPause is called. I don't want this to happen. But instead I want activity
> A running normally and on top activity B running.
>
> I don't have control over activity A. And activity B is only for
> displaying Alert dialogs.
>
> Is this possible in Android ?
>
> thank you.
>
> --
> 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 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

[android-developers] how to-Start new activity with also current activity running

2012-09-03 Thread HK
Hi,

I have activity A running. I want to start my new activity B so that 
activity A is also running. Is this possible ?

Normally, when activity B is started, activity A is put on hold and onPause 
is called. I don't want this to happen. But instead I want activity A 
running normally and on top activity B running.

I don't have control over activity A. And activity B is only for displaying 
Alert dialogs.

Is this possible in Android ?

thank you.

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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread karanam moneesh
Can you please share me that what steps i have to follow


On Mon, Sep 3, 2012 at 3:36 PM, Parthi K  wrote:

> Good just call data method inside the the data method implement  image
> switcher add some images  just try dis
>
>
> On Mon, Sep 3, 2012 at 3:32 PM, karanam moneesh wrote:
>
>> I am planning to change the background automatically when the date
>> changes.
>>
>>
>> On Mon, Sep 3, 2012 at 3:30 PM, Parthi K  wrote:
>>
>>> Hi dude tell me what is ur project can u describe 
>>>
>>>
>>>
>>> On Mon, Sep 3, 2012 at 3:27 PM, skink  wrote:
>>>


 karanam moneesh wrote:
 > I'm using that method but i want wake a different activity when the
 date
 > changes by default
 >
 > On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada >>> >wrote:
 >
 > > there is somthng called system date method..u can try..
 > >
 > >
 > > On 3 September 2012 15:02, sandeep  wrote:
 > >
 > >>  I want to make my app run continuously and take the date and time
 from
 > >> the phone. according to the date the activity should be changed
 every time.
 > >> Sorry for my bad english i think you have understand my question.
 > >>
 > >> --
 > >> 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 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
 > >
 >
 >
 >
 > --
 > With Regards
 > moneesh

 use AlarmManager

 pskink

 --
 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 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
>>>
>>
>>
>>
>> --
>> With Regards
>> moneesh
>>
>> --
>> 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 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
>



-- 
With Regards
moneesh

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

[android-developers] Re: Nexus 7 device not being detected by Eclipse

2012-09-03 Thread Ravin
Right after I posted the previous message I got the device to work. After 
rebooting the PC I went into the device manager and saw that there was no 
driver for the Nexus 7. This allowed me to select the driver I 
had downloaded from the ASUS website and I now can see and load the app for 
debugging.

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

[android-developers] Re: Nexus 7 device not being detected by Eclipse

2012-09-03 Thread Ravin

>
> Thanks Chris. I did realize that I had to do after seeing your post since 
> I did this a while back when I was writing and debugging an app on an ASUS 
> transformer. Having said that I made the change as well as set the 
> debug attribute to true in the Android manifest file but I still cannot see 
> the device. When I was using the transformer I do not recall having this 
> issue - the device showed up right away in the device chooser menu.


Right now I cannot see any real devices - only the emulator.

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

Re: [android-developers] databse

2012-09-03 Thread TreKing
On Mon, Sep 3, 2012 at 10:48 PM, Sadhna Upadhyay
wrote:

> how to store data in database list view and delete the required row when
> we click on any row ,how to do this,pls help me if any one hane any
> idea.


What have you tried so far? Most of what you've asked involves concepts
covered in pretty good detail in the documentation.

-
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

[android-developers] databse

2012-09-03 Thread Sadhna Upadhyay
hi everybody,
how to store data in database list view and delete the required row
when we click on any row ,how to do this,pls help me if any one hane any
idea.

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

Re: [android-developers] Re: Get notification status from other apps

2012-09-03 Thread TreKing
On Mon, Sep 3, 2012 at 7:39 PM, CJ  wrote:

> 1. List out installed app that uses Notification?
>

No.


> 2. List out app that are active running?
>

http://developer.android.com/reference/android/app/ActivityManager.html#getRunningAppProcesses%28%29

-
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

[android-developers] java.lang.IllegalArgumentException: parameter must be a descendant of this view

2012-09-03 Thread Li Sun
Hi,
It is monkey test issue. But I do not know how to fix it. Could someone 
help me?  Thanks a lot!
8-31 21:23:14.339 I/WindowManager(  324): SCREENLAYOUT_SIZE (1:small, 
2:normal, 3:large, 4:xlarge) 2

08-31 21:23:14.349 D/WebSettings( 1904): mDataPath: 
/data/data/com.android.browser

08-31 21:23:14.359 I/BrowserSettings( 1904): the usString=Mozilla/5.0 
MSM7627A/1.0 Linux/3.0.21 Android/4.0.4 Release/11.16.2011 
Browser/AppleWebKit533.1 Profile/ Configuration/ Mobile/4.0.4

08-31 21:23:14.379 D/WebViewTimersControl( 1904): onBrowserActivityResume

08-31 21:23:14.379 D/WebViewTimersControl( 1904): Resuming webview timers, 
view=com.android.browser.BrowserWebView@414dd450

08-31 21:23:14.389 W/InputManagerService(  324): Starting input on 
non-focused client 
com.android.internal.view.IInputMethodClient$Stub$Proxy@4153e7c8 (uid=10005 
pid=1904)

08-31 21:23:14.389 W/InputManagerService(  324): Ignoring showSoftInput of 
uid 10005: com.android.internal.view.IInputMethodClient$Stub$Proxy@414d0c68

08-31 21:23:14.699 W/dalvikvm( 1904): threadid=1: thread exiting with 
uncaught exception (group=0x40a83390)

08-31 21:23:14.719 E/AndroidRuntime( 1904): FATAL EXCEPTION: main

08-31 21:23:14.719 E/AndroidRuntime( 1904):*java.lang.IllegalArgumentException: 
parameter must be a descendant of this 
view*

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.view.ViewGroup.offsetRectBetweenParentAndChild(ViewGroup.java:4153)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.view.ViewGroup.offsetRectIntoDescendantCoords(ViewGroup.java:4100)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.view.ViewRootImpl.deliverKeyEventPostIme(ViewRootImpl.java:3400)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.view.ViewRootImpl.handleFinishedEvent(ViewRootImpl.java:3306)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2466)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.os.Handler.dispatchMessage(Handler.java:99)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.os.Looper.loop(Looper.java:137)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
android.app.ActivityThread.main(ActivityThread.java:4482)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
java.lang.reflect.Method.invokeNative(Native Method)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
java.lang.reflect.Method.invoke(Method.java:511)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:787)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:554)

08-31 21:23:14.719 E/AndroidRuntime( 1904): at 
dalvik.system.NativeStart.main(Native Method)

08-31 21:23:14.779 W/ActivityManager(  324):   Force finishing activity 
com.android.browser/.BrowserActivity

08-31 21:23:15.319 W/ActivityManager(  324): Activity pause timeout for 
ActivityRecord{41646298 com.android.browser/.BrowserActivity}

08-31 21:23:15.339 E/Perfman (  324): app.curSchedGroup = 0

08-31 21:23:15.349 I/WindowManager(  324): SCREENLAYOUT_SIZE (1:small, 
2:normal, 3:large, 4:xlarge) 2

08-31 21:23:15.439 I/SendKeyEvent( 3026): 4

08-31 21:23:15.469 D/dalvikvm( 3026): GC_CONCURRENT freed 97K, 83% free 
454K/2560K, paused 1ms+0ms

08-31 21:23:15.899 V/MainScreen( 2903): Main Screen finishing in destroy.

08-31 21:23:15.899 V/MainScreen( 2903): releaseScreen() invoked.

08-31 21:23:15.909 V/ApplicationManager( 2903): setCurrentActivity invoked.

08-31 21:23:15.909 V/MainScreen( 2903): call checkAndTerminateApplication() 
from MainScreen..

08-31 21:23:15.909 V/ApplicationManager( 2903): starting 
checkAndTerminateApplication

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

[android-developers] display TYPE_SYSTEM_DIALOG

2012-09-03 Thread HK

HI,

(I had posted this question in platform, but didn't get any response, so 
posting here)

I want to display TYPE_SYSTEM_DIALOG from a service:
snapshot of code:
popup.getWindow().setType(
WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG);
popup.show();

Basically I am finding a way to display dialog without an activity. I found 
that TYPE_SYSTEM_DIALOG could be a way. But the dialog doesn't show up and 
there is no error. The same code with normal dialog using an activity shows 
up, but not system dialog from service.
My service can be a system service(system app).
So my question is:
- what permissions do I need to set ?
- is there anything else I need to do ? or call ?
- anything i would be missing which is needed for TYPE_SYSTEM_DIALOG

thank you.

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

[android-developers] Re: Get notification status from other apps

2012-09-03 Thread CJ
I see. Then is it possible to:
1. List out installed app that uses Notification?
2. List out app that are active running?

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

Re: [android-developers] soap

2012-09-03 Thread Kristopher Micinski
This forum relates to the sdk, not soap services, in general... you may try
asking a forum related to soap development..

Kris
On Sep 3, 2012 7:10 AM, "rauf qureshi"  wrote:

> hello everyone,
>
> can anybody  explain me SOAP service
> I have found many example but i have not cleared  following parameters
>
> NAME_SPACE
> METHOD
> SOAP_ACTION
> URL
>
> Thanks in advance
>
>
>  --
> 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 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

Re: [android-developers] Re: InApp billing - always getting RESULT_ITEM_UNAVAILABLE

2012-09-03 Thread Rob B
Did you have to use new product ids? I noticed that after deleting the 
APKs, when I re-added, my products that I had previously had there were 
still there. I'd prefer to be able to keep the same products, if possible 
(especially since if you delete one, you cannot reuse the ID).

This is getting incredibly frustrating.

Rob

On Saturday, August 18, 2012 2:27:14 PM UTC-7, Przemyslaw Wegrzyn wrote:
>
>
> Just in case someone else is struggling with it - now it works for me. 
> Redownloading new APKs, changing settings, etc didn't help. 
>
> What helped was removing the application submission altogether (i.e. 
> deactivating and deleting one and only APK version), and recreating 
> everything from scratch. 
> S frustrating... 
>
> BR, 
> Przemek 
>
>
> On 08/16/2012 02:12 PM, Przemyslaw Wegrzyn wrote: 
> > On 08/16/2012 12:19 PM, bharadwaj wrote: 
> >> u have publish the items u have put in the developer account but no 
> >> need to publish ur app. 
> > That's exactly what I've done. 
> >> also need to mention required permisssions in your manifest. 
> > I have all the necessary permissions configured. 
> > My public key is OK, my test account is configured, device was 
> > factory-reseted... 
> > 
> > What makes me wonder: does it matter the account I used the upload 
> > belongs to 2 developer profiles (I have my own + I was added to mu 
> > customer's one, where I uploaded the test app). 
> > 
> > I'm gonna check this with the demo application today. 
> > 
> >> the unique id which u have given in for each item should be same as 
> >> the id u are sending to google while purchasing package. 
> > It is the same - purchase pop-up windows shows valid item 
> > title/descriptions, so it can "see" the item on the server side. 
> > 
> > I'm nearly sure it is some google-side quirk. Googling around I've found 
> > a few similar cases, e.g. here: 
> > 
> http://stackoverflow.com/questions/11020587/in-app-billing-item-requested-not-available-for-purchase
>  
> > See the longest answer, point 4. 
> > 
> > BR, 
> > Przemek 
> > 
> > 
>
>

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

[android-developers] Re: ADT Plugin not installing on eclipse properly

2012-09-03 Thread AChow
Now it works. Thanks

On Monday, September 3, 2012 5:36:33 PM UTC-4, AChow wrote:
>
> I am trying to update the ADT Plugin on eclipse and says that it cannot 
> update. Eclipse says this 
>
> "Cannot complete the install because one or more required items could not 
> be found.
>   Software being installed: Android Development Tools 
> 20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group 
> 20.0.3.v201208082019-427395)
>   Missing requirement: Android Development Tools 
> 20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group 
> 20.0.3.v201208082019-427395) requires 'org.eclipse.wst.sse.core 0.0.0' but 
> it could not be found"
>
> Is there something else I must install or is the installer broken?
>
>

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

Re: [android-developers] ADT Plugin not installing on eclipse properly

2012-09-03 Thread Kostya Vasilyev
Make sure that the checkbox to "Contact all update sites" in the Eclipse
install/update window is *checked*. You should also have Eclipse Project
Updates and Indigo (or Juno) listed in the "Work with" drop-down.

You could also install a version of Eclipse which already has the missing
pieces. The Android documentation recommends the Classic edition of Eclipse.

https://developers.google.com/eclipse/docs/faq?hl=es#wstinstallerror

-- K

2012/9/4 AChow 

> I am trying to update the ADT Plugin on eclipse and says that it cannot
> update. Eclipse says this
>
> "Cannot complete the install because one or more required items could not
> be found.
>   Software being installed: Android Development Tools
> 20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group
> 20.0.3.v201208082019-427395)
>   Missing requirement: Android Development Tools
> 20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group
> 20.0.3.v201208082019-427395) requires 'org.eclipse.wst.sse.core 0.0.0' but
> it could not be found"
>
> Is there something else I must install or is the installer broken?
>
>  --
> 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 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

[android-developers] Re: Nexus 7 device not being detected by Eclipse

2012-09-03 Thread crennie
I just had this problem. You have to go into setting on your device. Developer 
setting. Set USB debug.
Chris


On Monday, September 3, 2012 10:38:26 AM UTC-4, Ravin wrote:
> I'm developing an app and using a Nexus 7 device for debugging. I'm unable to 
> see the device in the AVD when plugged in. Some research online suggested it 
> could be the driver so I downloaded what looks like the latest driver from 
> the ASUS website and when I try to change the driver to that one the OS 
> reports that the current driver is the latest.
> 
> 
> I'm developing on a Win 7 machine.
> 
> 
> Anyone had any problems with the device and any ideas on how to resolve?

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


[android-developers] ADT Plugin not installing on eclipse properly

2012-09-03 Thread AChow
I am trying to update the ADT Plugin on eclipse and says that it cannot 
update. Eclipse says this 

"Cannot complete the install because one or more required items could not 
be found.
  Software being installed: Android Development Tools 
20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group 
20.0.3.v201208082019-427395)
  Missing requirement: Android Development Tools 
20.0.3.v201208082019-427395 (com.android.ide.eclipse.adt.feature.group 
20.0.3.v201208082019-427395) requires 'org.eclipse.wst.sse.core 0.0.0' but 
it could not be found"

Is there something else I must install or is the installer broken?

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

[android-developers] Receive Sms

2012-09-03 Thread Ehsan Sadeghi


I write this broadcast receiver to receive sms from certains number : 

package ir.smspeik.sms;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.widget.Toast;

public class ReceiveSms extends BroadcastReceiver{
 @Override
 public void onReceive(Context context, Intent intent)
 {
 //---get the SMS message passed in---
  //---get the SMS message passed in---
  Bundle bundle = intent.getExtras();
  SmsMessage[] msgs = null;
  String str = "";
  if (bundle != null)
  {
  //---retrieve the SMS message received---
  Object[] pdus = (Object[]) bundle.get("pdus");
  msgs = new SmsMessage[pdus.length];
  for (int i=0; ihttp://groups.google.com/group/android-developers?hl=en

[android-developers] Re: SDK Issues

2012-09-03 Thread Deagle
Bump*

On Sunday, September 2, 2012 2:32:02 AM UTC-5, Deagle wrote:
>
>  I'm having issues downloading the intel x86 atom system image through the 
> sdk. the dl just hangs every time. The other sdk packages install just fine.  
>  I found some comments about it during a quick search but no solutions.
>

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

[android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread skink


Dancing Fingers wrote:
> How do you get the corners not to be clickable?   That was my problem.  I
> created a whole keyboard of Hexagons.
> Chris


ok, now i get it

pskink

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


[android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread Dancing Fingers

How do you get the corners not to be clickable?   That was my problem.  I 
created a whole keyboard of Hexagons.
Chris

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

[android-developers] Re: Get notification status from other apps

2012-09-03 Thread Anton Kaiser
Notifications can include sensitive personal data like a text message or 
part of an email text.
Imagine Android would actually allow apps to forward such data.
There might be a way if the device is rooted and the app runs with root 
rights then, but that would rather be called a virus then ;)

Am Freitag, 31. August 2012 08:43:42 UTC+2 schrieb CJ:
>
> Hi, I just did some Googling but did not find any answer.
> In Android SDK, is there a possibility to detect what notification is 
> active in the notification bar?
>
> Eg. My app is call "MyApp" and when a 3rd party "NotMyApp-A", "NotMyApp-B" 
> fires 2 notification is there ways to detect them in my app?
>

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

Re: [android-developers] How to write/prepresent keyword to upload a apps

2012-09-03 Thread Kristopher Micinski
You can't password protect apps so they can be downloaded in the
market, this has been discussed previously on this list.

kris

On Mon, Sep 3, 2012 at 11:23 AM, Rocky  wrote:
> I'm going to upload new apps, I have some keywork, how to write/represent
> this keyword while uploading apps to market.
>
>
> --
> Thanks & Regards
>
> Rakesh Kumar Jha
> Android Developer, Trainer and Mentor
> Bangalore
> Skype - rkjhaw
> (O) +918050753516
> (R) +919886336619
>
> --
> 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 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


Re: [android-developers] How to write/prepresent keyword to upload a apps

2012-09-03 Thread TreKing
On Mon, Sep 3, 2012 at 11:23 AM, Rocky  wrote:

> I'm going to upload new apps, I have some keywork, how to write/represent
> this keyword while uploading apps to market.


What? Your question makes little sense.

-
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

[android-developers] How to write/prepresent keyword to upload a apps

2012-09-03 Thread Rocky
I'm going to upload new apps, I have some keywork, how to write/represent
this keyword while uploading apps to market.


-- 
Thanks & Regards

Rakesh Kumar Jha
Android Developer, Trainer and Mentor
Bangalore
Skype - rkjhaw
(O) +918050753516
(R) +919886336619

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

Re: [android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread Meena Rengarajan
 I tried that. But no changes have seen in my app . Anywys again let me try
!

On Mon, Sep 3, 2012 at 9:00 PM, skink  wrote:

>
>
> Meena Rengarajan wrote:
> > Do u have any sample codes or links atleast example . I have tried a lot
> !
> > But no use. I didnt get any changes in my app.
> >
>
> i already posted sample code: see my firsr post
>
> pskink
>
> --
> 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 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

Re: [android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread skink


Meena Rengarajan wrote:
> Do u have any sample codes or links atleast example . I have tried a lot !
> But no use. I didnt get any changes in my app.
>

i already posted sample code: see my firsr post

pskink

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


Re: [android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread Meena Rengarajan
Do u have any sample codes or links atleast example . I have tried a lot !
But no use. I didnt get any changes in my app.

On Mon, Sep 3, 2012 at 8:43 PM, skink  wrote:

>
>
> Dancing Fingers wrote:
> > Been there, done that, pretty sure you can't do it in TextView unless you
> > use Path over an image Button.  I used a Canvas and drew it.
> >
> > Chris
>
> why?  just use proper Drawable, let it be a ShapeDrawable or a custom
> one
>
> pskink
>
> --
> 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 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

[android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread skink


Dancing Fingers wrote:
> Been there, done that, pretty sure you can't do it in TextView unless you
> use Path over an image Button.  I used a Canvas and drew it.
>
> Chris

why?  just use proper Drawable, let it be a ShapeDrawable or a custom
one

pskink

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


Re: [android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread Meena Rengarajan
At:
Dancing Fingers batym...@gmail.com

Canvas , yeah i too seen tat . Is it working for you ? Are you sure ?

On Mon, Sep 3, 2012 at 6:21 PM, Dancing Fingers  wrote:

> Been there, done that, pretty sure you can't do it in TextView unless you
> use Path over an image Button.  I used a Canvas and drew it.
>
> Chris
>
>  --
> 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 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

[android-developers] Nexus 7 device not being detected by Eclipse

2012-09-03 Thread Ravin
I'm developing an app and using a Nexus 7 device for debugging. I'm unable 
to see the device in the AVD when plugged in. Some research online 
suggested it could be the driver so I downloaded what looks like the latest 
driver from the ASUS website and when I try to change the driver to that 
one the OS reports that the current driver is the latest.

I'm developing on a Win 7 machine.

Anyone had any problems with the device and any ideas on how to resolve?

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

Re: [android-developers] Problems with Linkify in Android 4

2012-09-03 Thread Mark Murphy
On Mon, Sep 3, 2012 at 10:27 AM, JD  wrote:
>There is no other way...?. There has to be some possible fix for the
> developers to fire an intent..

Post your code showing your use of Linkify.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 4.1 Available!

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


[android-developers] Save image from webview (where the website requires authentication)

2012-09-03 Thread AntiBit


Hi,

I want to create a little browser, which should also be able to save images.

I managed to implement a webview where I can save the images via a long 
click context menu/HitTestResult. So when I get the URL of an image, I do 
something like this:

URL url = new URL(yourImageUrl);
  InputStream is = (InputStream) url.getContent();
  byte[] buffer = new byte[8192];
  int bytesRead;
  ByteArrayOutputStream output = new ByteArrayOutputStream();
  while ((bytesRead = is.read(buffer)) != -1) {
output.write(buffer, 0, bytesRead);
  }

then put the output.toByteArray() into a FileOutputStream;

For "normal" sites this works fine, images are stored on the sdcard.

But I still don't know how to download an image of a site which requires 
some kind of authentication. For example, I enter the site and input a 
username/password into a form (some server side language like PHP), which 
brings me to some pictures. The webview has no problem in logging in and 
displaying everything. But I can't save images, since the authentication - 
which is present in the webview - is *not* present in my image saving 
mechanism.

With the above code I simply get a FileNotFoundException on the 
URL.getContent(). Then I tried to use HttpClient and HttpGet/HttpResponse, 
where the response is always code 403.

My question: How can I access/download/authenticate to get images of 
protected areas (may it be through server side language or basic 
authentication).

I mean... it's all there, displayed correctly and authenticated in the 
WebView :-( But there's no connection between the content of the WebView 
and my URL/Http Request downloading efforts. 

So, the webview already has all the information of the authentication. But 
when I set up a HttpClient for Downloading, I either have to 

- fetch the right session cookies from the WebView (but HOW can *I *know 
what cookies for which URLS have been added to the webview,  when there's 
no getAllCookies() method but just a getCookie(String url) method)?

- for basic authentication, get the Username & password, when I don't know 
the realm of the website?

Can the webview somehow share it's authentication state (easily)?

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

[android-developers] Re: New SDK release for Egnos

2012-09-03 Thread Leonardo Costa
Hello again everybody!
To start approaching the EGNOS SDK, you can now install the Demo App on 
your smartphone and with the support of the external receiver you can 
experience the power of high accuracy positioning directly in your hand.

http://egnos-portal.gsa.europa.eu/developer-platform/egnos-toolkits/egnos-sdk

Download the DEMO APP and follow the How To Install Guide. As always if you 
have any question please reply to this thread!
Cheers 
L.

On Tuesday, 31 July 2012 23:20:39 UTC+2, Leonardo Costa wrote:
>
> Hello,
> I'm posting this info on behalf of the European Commission, the new 
> release of the EGNOS SDK for app developers is now available.
>
> This EGNOS SDK allows taking advantage of the European system that 
> provides enhanced positioning accuracy and other features (e.g. information 
> on the reliability of the position itself) directly towards the 
> smartphones. It is available for free on the EGNOS Portal at 
> http://egnos-portal.gsa.europa.eu/developer-platform/egnos-toolkits/egnos-sdk
>
> I am available for any further info, request, questions, you may have on 
> this topic and will post reply here. I will also post further details in 
> the next weeks, following up directly  at this thread.
> Thanks and regards,
> Leonardo
>

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

[android-developers] Custom view's attributes

2012-09-03 Thread Pau Rodríguez Coloma
 

Hi, 

I'm sublcassing an ImageView and adding one custom attribute like this in a 
res/values/attrs file:



 








In my layout file I can use it like this:


 


I've been reading some forums and I've seen two way for use it, with "app" 
and with "custom", but I don't know the difference. If someone can explain 
me I'll appreciate.


But the important question for me is that when I add the res/values/attrs 
for my custom ImageView, Eclipse doesn't autocomplete the default 
attributes for an ImageView like the "android:src" or "android:scaleType"


Does anyone know why are this happening?


Thanks in advance. 

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

Re: [android-developers] Problems with Linkify in Android 4

2012-09-03 Thread JD


On Monday, 3 September 2012 18:35:57 UTC+5:30, Mark Murphy (a Commons Guy) 
wrote:
>
> On Mon, Sep 3, 2012 at 8:48 AM, JD > 
> wrote: 
> > Guys any update on this?. Me too facing this issue on HTC-EVO 4G device. 
> In 
> > my case, i have linkified the TextView which contains the mentions name 
> for 
> > r.g @hero, @roger etc. But on clicking of these mentions links it does 
> not 
> > fires my Intent. Works fine on Samsung and LG devices. 
>
> http://commonsware.com/blog/2012/07/23/linkify-problem-patent-behavior.html 
>
> http://commonsware.com/blog/2012/07/24/linkify-problem-detection-mitigation.html
>  
>
>Thanks for the reply mark. 
   There is no other way...?. There has to be some possible fix for the 
developers to fire an intent..
 

> -- 
> Mark Murphy (a Commons Guy) 
> http://commonsware.com | http://github.com/commonsguy 
> http://commonsware.com/blog | http://twitter.com/commonsguy 
>
> _The Busy Coder's Guide to Android Development_ Version 4.1 Available! 
>

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

Re: [android-developers] Problems seeing mobile device via ADB

2012-09-03 Thread Felipe Silveira
Are you using windows? If yes, you need to install the adb driver for your
device. You can find it on samsung website.

Best Regards

On Sat, Sep 1, 2012 at 9:49 AM, Nick Keighley <
nick_keighley_nos...@hotmail.com> wrote:

> Hi,
>
> I've written a simple "hello world" app and can run it on the
> emulator, but I can't get it to load onto my android device. Even when
> my device is physically connected via usb adb cannot see it on the
> device list. The device is visible via file explorer.
>
> using eclipse, samsung galaxy S3
>
> --
> 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
>



-- 
Felipe Silveira
http://www.felipesilveira.com.br
-

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

[android-developers] Re: Problem Getting the first and last day of current week.

2012-09-03 Thread skink


Seshu wrote:
> Hi All,
>  I am using Calendar objects in my application and based on
> the current date i am retrieving first and last date of current week.
> In emulator o/p is coming as week starting from Sunday to Saturday
> correct and in some device the o/p is showing as Monday to Sunday. I
> used same code in java. there also o/p is showing from Sunday to
> Saturday only. i need the output as Sunday to Saturday only. I used
> these code..
>
> Calendar cal = Calendar.getInstance();
>   int weekOfYear = cal.get(Calendar.WEEK_OF_YEAR);
>   cal.set(Calendar.WEEK_OF_YEAR, weekOfYear);
>   SimpleDateFormat formatter = new 
> SimpleDateFormat("MM/dd/");
>
>   Calendar first = (Calendar) cal.clone();
>   first.add(Calendar.DAY_OF_WEEK, 
> first.getFirstDayOfWeek() -
> first.get(Calendar.DAY_OF_WEEK));
>   Calendar last = (Calendar) first.clone();
>   last.add(Calendar.DAY_OF_YEAR, 6);
>
>   String fromDate = formatter.format(first.getTime());
>   String toDate = formatter.format(last.getTime());
>
> If anybody knows the reason means then plz tell me the solution. if
> these method is wrong means then plz send the code
>
> Thanks for All,
> S.Seshu

read carefully Calendar's documentation

pskink

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


[android-developers] Re: GL_POINTS not drawing points

2012-09-03 Thread guich
Hi,

Many thanks for your help.

The actual problem was a misunderstood of the STRIDE value, which must
be NUMBER OF COORDS PER VERTICE * SIZEOF FLOAT.

Changing to 12 fixed the problem.

cheers

   guich

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


[android-developers] Problem Getting the first and last day of current week.

2012-09-03 Thread Seshu
Hi All,
 I am using Calendar objects in my application and based on
the current date i am retrieving first and last date of current week.
In emulator o/p is coming as week starting from Sunday to Saturday
correct and in some device the o/p is showing as Monday to Sunday. I
used same code in java. there also o/p is showing from Sunday to
Saturday only. i need the output as Sunday to Saturday only. I used
these code..

Calendar cal = Calendar.getInstance();
int weekOfYear = cal.get(Calendar.WEEK_OF_YEAR);
cal.set(Calendar.WEEK_OF_YEAR, weekOfYear);
SimpleDateFormat formatter = new 
SimpleDateFormat("MM/dd/");

Calendar first = (Calendar) cal.clone();
first.add(Calendar.DAY_OF_WEEK, 
first.getFirstDayOfWeek() -
first.get(Calendar.DAY_OF_WEEK));
Calendar last = (Calendar) first.clone();
last.add(Calendar.DAY_OF_YEAR, 6);

String fromDate = formatter.format(first.getTime());
String toDate = formatter.format(last.getTime());

If anybody knows the reason means then plz tell me the solution. if
these method is wrong means then plz send the code

Thanks for All,
S.Seshu

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


[android-developers] How to Post on current mp3 play file name on facebook ticker

2012-09-03 Thread Swap
hey 
i want to show current playing file name of my app on "facebook ticker "
I search for that i dont find any tutorial or sample code ..
please share what are the steps i have to follow to post on ticker
waiting for reply

thank you

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

Re: [android-developers] Problems with Linkify in Android 4

2012-09-03 Thread Mark Murphy
On Mon, Sep 3, 2012 at 8:48 AM, JD  wrote:
> Guys any update on this?. Me too facing this issue on HTC-EVO 4G device. In
> my case, i have linkified the TextView which contains the mentions name for
> r.g @hero, @roger etc. But on clicking of these mentions links it does not
> fires my Intent. Works fine on Samsung and LG devices.

http://commonsware.com/blog/2012/07/23/linkify-problem-patent-behavior.html
http://commonsware.com/blog/2012/07/24/linkify-problem-detection-mitigation.html

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 4.1 Available!

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


[android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread Dancing Fingers
Been there, done that, pretty sure you can't do it in TextView unless you 
use Path over an image Button.  I used a Canvas and drew it.

Chris

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

Re: [android-developers] Problems with Linkify in Android 4

2012-09-03 Thread JD
Guys any update on this?. Me too facing this issue on HTC-EVO 4G device. In 
my case, i have linkified the TextView which contains the mentions name for 
r.g @hero, @roger etc. But on clicking of these mentions links it does not 
fires my Intent. Works fine on Samsung and LG devices. 

On Thursday, 14 June 2012 06:21:04 UTC+5:30, Mark Murphy (a Commons Guy) 
wrote:
>
> On Wed, Jun 13, 2012 at 8:48 PM, Jim Anderson 
> > 
> wrote: 
> > After playing around with this on the emulator, it looks like it's 
> > HTC-specific. Plain Android 4 does Linkify just fine, while my HTC One S 
> > doesn't fire intents from Linkify. Odd, but I can work around that. 
>
> If you can create a sample app demonstrating your problem, I would be 
> interested in taking a look at it. 
>
> -- 
> Mark Murphy (a Commons Guy) 
> http://commonsware.com | http://github.com/commonsguy 
> http://commonsware.com/blog | http://twitter.com/commonsguy 
>
> _The Busy Coder's Guide to Android Development_ Version 3.7 Available! 
>

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

Re: [android-developers] ADT Plugin Installation

2012-09-03 Thread Ryan Kelso
My Ubuntu environment is on a laptop, as stated before, and the emulator 
runs quite sluggishly, takes 5 minutes to even start up. It's quite the bad 
development form for school work. (Although I am seriously thinking about 
dual-booting Ubuntu on my PC, thus overcoming the problem).

Yes, I have tried turning off "contact all software sources" and it gives 
me an error saying I am missing some key piece of software something or 
other.. However, I just tried to install it and it all of a sudden worked. 
Do not know why, maybe because of a computer reboot since last trying.

Thanks for all the help everyone.

On Monday, September 3, 2012 5:18:10 AM UTC-4, Kostya Vasilyev wrote:
>
> Have you tried turning off "contact all software sources" in the Eclipse 
> install / update dialog?
>
> -- K
>
> 2012/9/1 Ryan Kelso >
>
>> I am currently beginning a course on Android Application Development at 
>> my local community college, and have setup Eclipse with the ADT Plugin on 
>> my laptop (running Ubuntu Linux 12.04) with no problems. I am now 
>> attempting to set it up on my Windows 7 desktop and am having issues 
>> installing the ADT Plugin. I went to the Eclipse website but was referred 
>> back to here. The problem: When I do "Install New Software" and use https
>> ://dl-ssl.google.com/android/eclipse/ it will begin, hit 26% then after 
>> a period of time go to 49%, but after having waited over 25minutes with no 
>> change I eventually cancel and try again. After having done this a number 
>> of times I finally resolved to post here for a solution. I have tried 
>> making program exceptions in the firewall, gone into the DMZ to try getting 
>> things running, turning off my firewall, using HTTP instead of HTTPS. 
>> Nothing changes. Any ideas? Using Eclipse 4.2 "Juno", Windows 7 64-bit
>>
>
>

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

Re: [android-developers] How disable internet data traffic?

2012-09-03 Thread ROBERTO ANGUITA MARTIN
Thanks Fred for rapid reply
This article had read, but in the comment said not is a standard method, 
because from Android 2.3 change the mode and not is sure in the future this 
method will continue.
 
Regards

El lunes, 3 de septiembre de 2012 13:11:41 UTC+2, Fred Niggle escribió:

> Well, i simply did a google search and found this: 
> http://stackoverflow.com/questions/3644144/how-to-disable-mobile-data-on-android
>  
>
> that should do it!
>
> On 3 September 2012 12:02, ROBERTO ANGUITA MARTIN 
> 
> > wrote:
>
>> Hi 
>> How i can disable all data traffic in App for all phone? I'm try change 
>> APN , but the data transfer, has a reset and continue
>> Kind Regards
>> Roberto
>>
>>
>  
>

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

[android-developers] low level media codecs in jellybean

2012-09-03 Thread sangram
Hi all,
Just wanted to know with the introduction of these new low level media 
codec APIs can we add the support for new codecs at the application level?
If yes, does this mean that we don't have to use openmax IL and other stuff 
to integrate the third party codec? In the earlier versions if we wanted to 
add a third party codec we had to follow that process.

Thanks,
Sangram

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

[android-developers] soap

2012-09-03 Thread rauf qureshi
hello everyone,

can anybody  explain me SOAP service
I have found many example but i have not cleared  following parameters

NAME_SPACE
METHOD
SOAP_ACTION
URL

Thanks in advance

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

Re: [android-developers] How disable internet data traffic?

2012-09-03 Thread Fred Niggle
Well, i simply did a google search and found this:
http://stackoverflow.com/questions/3644144/how-to-disable-mobile-data-on-android

that should do it!

On 3 September 2012 12:02, ROBERTO ANGUITA MARTIN <
roberto.anguitamar...@gmail.com> wrote:

> Hi
> How i can disable all data traffic in App for all phone? I'm try change
> APN , but the data transfer, has a reset and continue
> Kind Regards
> Roberto
>
> --
> 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




-- 
Ubuntu Speech 
inputis
now available on Google Play, along with Magnetic
Door Alarm 
app
.

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

[android-developers] How disable internet data traffic?

2012-09-03 Thread ROBERTO ANGUITA MARTIN
Hi 
How i can disable all data traffic in App for all phone? I'm try change APN 
, but the data transfer, has a reset and continue
Kind Regards
Roberto

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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread Parthi K
Good just call data method inside the the data method implement  image
switcher add some images  just try dis

On Mon, Sep 3, 2012 at 3:32 PM, karanam moneesh  wrote:

> I am planning to change the background automatically when the date changes.
>
>
> On Mon, Sep 3, 2012 at 3:30 PM, Parthi K  wrote:
>
>> Hi dude tell me what is ur project can u describe 
>>
>>
>>
>> On Mon, Sep 3, 2012 at 3:27 PM, skink  wrote:
>>
>>>
>>>
>>> karanam moneesh wrote:
>>> > I'm using that method but i want wake a different activity when the
>>> date
>>> > changes by default
>>> >
>>> > On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada >> >wrote:
>>> >
>>> > > there is somthng called system date method..u can try..
>>> > >
>>> > >
>>> > > On 3 September 2012 15:02, sandeep  wrote:
>>> > >
>>> > >>  I want to make my app run continuously and take the date and time
>>> from
>>> > >> the phone. according to the date the activity should be changed
>>> every time.
>>> > >> Sorry for my bad english i think you have understand my question.
>>> > >>
>>> > >> --
>>> > >> 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 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
>>> > >
>>> >
>>> >
>>> >
>>> > --
>>> > With Regards
>>> > moneesh
>>>
>>> use AlarmManager
>>>
>>> pskink
>>>
>>> --
>>> 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 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
>>
>
>
>
> --
> With Regards
> moneesh
>
> --
> 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 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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread karanam moneesh
I am planning to change the background automatically when the date changes.

On Mon, Sep 3, 2012 at 3:30 PM, Parthi K  wrote:

> Hi dude tell me what is ur project can u describe 
>
>
>
> On Mon, Sep 3, 2012 at 3:27 PM, skink  wrote:
>
>>
>>
>> karanam moneesh wrote:
>> > I'm using that method but i want wake a different activity when the date
>> > changes by default
>> >
>> > On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada > >wrote:
>> >
>> > > there is somthng called system date method..u can try..
>> > >
>> > >
>> > > On 3 September 2012 15:02, sandeep  wrote:
>> > >
>> > >>  I want to make my app run continuously and take the date and time
>> from
>> > >> the phone. according to the date the activity should be changed
>> every time.
>> > >> Sorry for my bad english i think you have understand my question.
>> > >>
>> > >> --
>> > >> 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 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
>> > >
>> >
>> >
>> >
>> > --
>> > With Regards
>> > moneesh
>>
>> use AlarmManager
>>
>> pskink
>>
>> --
>> 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 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
>



-- 
With Regards
moneesh

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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread Parthi K
Hi dude tell me what is ur project can u describe 



On Mon, Sep 3, 2012 at 3:27 PM, skink  wrote:

>
>
> karanam moneesh wrote:
> > I'm using that method but i want wake a different activity when the date
> > changes by default
> >
> > On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada  >wrote:
> >
> > > there is somthng called system date method..u can try..
> > >
> > >
> > > On 3 September 2012 15:02, sandeep  wrote:
> > >
> > >>  I want to make my app run continuously and take the date and time
> from
> > >> the phone. according to the date the activity should be changed every
> time.
> > >> Sorry for my bad english i think you have understand my question.
> > >>
> > >> --
> > >> 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 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
> > >
> >
> >
> >
> > --
> > With Regards
> > moneesh
>
> use AlarmManager
>
> pskink
>
> --
> 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 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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread skink


karanam moneesh wrote:
> I'm using that method but i want wake a different activity when the date
> changes by default
>
> On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada wrote:
>
> > there is somthng called system date method..u can try..
> >
> >
> > On 3 September 2012 15:02, sandeep  wrote:
> >
> >>  I want to make my app run continuously and take the date and time from
> >> the phone. according to the date the activity should be changed every time.
> >> Sorry for my bad english i think you have understand my question.
> >>
> >> --
> >> 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 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
> >
>
>
>
> --
> With Regards
> moneesh

use AlarmManager

pskink

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


Re: [android-developers] Re: What are the file formats in Android WebView cache directory (data_1, f_000001 etc.) and are these accessible somehow?

2012-09-03 Thread Ibrahim Sada
No Idea dear..

On 3 September 2012 15:14, AntiBit  wrote:

> No ideas anyone?
>
> --
> 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 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

[android-developers] Re: What are the file formats in Android WebView cache directory (data_1, f_000001 etc.) and are these accessible somehow?

2012-09-03 Thread AntiBit
No ideas anyone?

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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread karanam moneesh
I'm using that method but i want wake a different activity when the date
changes by default

On Mon, Sep 3, 2012 at 3:04 PM, Ibrahim Sada wrote:

> there is somthng called system date method..u can try..
>
>
> On 3 September 2012 15:02, sandeep  wrote:
>
>>  I want to make my app run continuously and take the date and time from
>> the phone. according to the date the activity should be changed every time.
>> Sorry for my bad english i think you have understand my question.
>>
>> --
>> 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 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
>



-- 
With Regards
moneesh

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

Re: [android-developers] How to make my intent to run background

2012-09-03 Thread Ibrahim Sada
there is somthng called system date method..u can try..

On 3 September 2012 15:02, sandeep  wrote:

>  I want to make my app run continuously and take the date and time from
> the phone. according to the date the activity should be changed every time.
> Sorry for my bad english i think you have understand my question.
>
> --
> 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 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

[android-developers] How to make my intent to run background

2012-09-03 Thread sandeep
 I want to make my app run continuously and take the date and time from the 
phone. according to the date the activity should be changed every time. 
Sorry for my bad english i think you have understand my question.

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

Re: [android-developers] ADT Plugin Installation

2012-09-03 Thread Kostya Vasilyev
Have you tried turning off "contact all software sources" in the Eclipse
install / update dialog?

-- K

2012/9/1 Ryan Kelso 

> I am currently beginning a course on Android Application Development at my
> local community college, and have setup Eclipse with the ADT Plugin on my
> laptop (running Ubuntu Linux 12.04) with no problems. I am now attempting
> to set it up on my Windows 7 desktop and am having issues installing the
> ADT Plugin. I went to the Eclipse website but was referred back to here.
> The problem: When I do "Install New Software" and use https://
> dl-ssl.google.com/android/eclipse/ it will begin, hit 26% then after a
> period of time go to 49%, but after having waited over 25minutes with no
> change I eventually cancel and try again. After having done this a number
> of times I finally resolved to post here for a solution. I have tried
> making program exceptions in the firewall, gone into the DMZ to try getting
> things running, turning off my firewall, using HTTP instead of HTTPS.
> Nothing changes. Any ideas? Using Eclipse 4.2 "Juno", Windows 7 64-bit.
>
> --
> 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 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

[android-developers] Re: How to create Hexagon in android ?

2012-09-03 Thread skink


On Sep 3, 7:49 am, Meena Rengarajan  wrote:
> 
> http://schemas.android.com/apk/res/android"; >
>     android:shape="Rectangle">
>              android:startColor="#F778A1"
>         android:endColor="#D4A017"
>         android:angle="180"/>
>     
>              android:top="9dp"
>         android:right="9dp"
>         android:bottom="9dp" />
>     
> 
>
> My Requirement : How to change the shape of the textview and buttons as a
> Hexagonal shape?
>
> I have done so far :-
>
> This is my Code, I have changed textview shape as a rectangle with round
> edged corners. But i have done this in Xml. It works fine for me.
>
> Same, now i wanna change the shape of the Textview as a Hexagonal shape so
> textview label and button labels would be appeared in Hexagonal shape so i
> wanna do this in my app. How could i do this ? Could anyone help me.
>
> Any suggestions / helps would be greatly appreciated, thank you
>

if you really want to use hexagonal Shape this can be starting point:

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv = (TextView) findViewById(R.id.text);

Path path = new Path();
float stdW = 100;
float stdH = 100;
float w3 = stdW / 3;
float h2 = stdH / 2;
path.moveTo(0, h2);
h2 -= 6 / 2;
path.rLineTo(w3, -h2);  path.rLineTo(w3, 0); path.rLineTo(w3, 
h2);
path.rLineTo(-w3, h2); path.rLineTo(-w3, 0); path.rLineTo(-w3, 
-h2);
Shape s = new PathShape(path, stdW, stdH);
ShapeDrawable d = new ShapeDrawable(s);
Paint p = d.getPaint();
p.setColor(0xffee);
p.setStyle(Style.STROKE);
p.setStrokeWidth(6);

tv.setBackgroundDrawable(d);
}

pskink

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


[android-developers] 【android-developers 】 android:icon

2012-09-03 Thread 安藤玲生
hello. im japanese programer.







help me.

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

[android-developers] Re: Android List view with toggle button

2012-09-03 Thread Haris
Thanks for your reply.

Can you explain little more..?

On Saturday, 1 September 2012 18:12:00 UTC+5:30, Haris wrote:
>
>
> Hai...
>
>   I am writing an application something like list view with toggle 
> button...
> Here is my source code...
>
>
> public void onCreate(Bundle savedInstanceState) {
>  super.onCreate(savedInstanceState);
>  ArrayAdapter adapter=new 
> ArrayAdapter(getApplicationContext(),R.layout.main,R.id.textView1,getResources().getStringArray(R.array.Strings));
>  setListAdapter(adapter);
>
>  }
>  @Override
>  protected void onListItemClick(ListView l, View v, int position, long id) 
> {
>  String item = (String) getListAdapter().getItem(position);
>  Toast.makeText(this, item+" selected", Toast.LENGTH_LONG).show();
>  } 
>
> And I am importing the list from string resources..and my sring.xml is
>
> 
> MyListViewWithToggleButton
>  Hello world!
>  Settings
>  MyListViewWithToggle
>  ON/OFF
>  
>  
>  
>  
>  Relay1
>  Relay2
>  Relay3
>  Relay4
>  Relay5
>  Relay6
>  Relay7
>  Relay8
>  
> 
>
> And in mu main.xml I am using a text view and toggle button
>
>
> http://schemas.android.com/apk/res/android";
>  xmlns:tools="http://schemas.android.com/tools";
>  android:layout_width="match_parent"
>  android:layout_height="match_parent" >
>  
>  android:id="@+id/textView1"
>  android:layout_width="wrap_content"
>  android:layout_height="wrap_content"
>  android:layout_alignParentLeft="true"
>  android:layout_toLeftOf="@+id/toggleButton1"
>  android:textSize="20dp" >
>
>  
> 
> android:id="@+id/toggleButton1"
>  android:layout_width="wrap_content"
>  android:layout_height="wrap_content"
>   android:layout_alignParentRight="true"
>  android:layout_marginLeft="4dp"
>  android:layout_marginRight="10dp" 
>   android:text="@string/On_Off" >
>  
>
>  
>
> 
>
> when I click the toggle button it showing On and off...
> But when I click on the list I am not getting any responses..
>
> For my application I need to send some data while pressing the toggle 
> button with respect to button condtion
>
> thanks...
>
>  
>

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

Re: [android-developers] How to create Hexagon in android ?

2012-09-03 Thread Parthi K
do you knw image edit sw.. just get image hexagonal shape  and use image
button ...that s all

On Mon, Sep 3, 2012 at 11:19 AM, Meena Rengarajan wrote:

> 
> http://schemas.android.com/apk/res/android"; >
> android:shape="Rectangle">
>  android:startColor="#F778A1"
> android:endColor="#D4A017"
> android:angle="180"/>
> 
>  android:top="9dp"
> android:right="9dp"
> android:bottom="9dp" />
> 
> 
>
> My Requirement : How to change the shape of the textview and buttons as a
> Hexagonal shape?
>
> I have done so far :-
>
> This is my Code, I have changed textview shape as a rectangle with round
> edged corners. But i have done this in Xml. It works fine for me.
>
> Same, now i wanna change the shape of the Textview as a Hexagonal shape so
> textview label and button labels would be appeared in Hexagonal shape so i
> wanna do this in my app. How could i do this ? Could anyone help me.
>
> Any suggestions / helps would be greatly appreciated, thank you
> On Monday, September 3, 2012 11:09:45 AM UTC+5:30, Anirudh Loya wrote:
>
>> What is your exact requirement ?
>>
>> On Mon, Sep 3, 2012 at 10:58 AM, Meena Rengarajan wrote:
>>
>>> Hi all,
>>>I wanna create Hexagon in android . I have no idea how to
>>> create buttons in hexagonal shape . Please can anyone suggest me .
>>>
>>> I have tried a lot in google. No sources i have found.
>>>
>>> Could anyone suggest me a link for coding or any codes ?
>>>
>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To post to this group, send email to android-d...@**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
>>>
>>
>>
>>
>> --
>>
>> Thank you
>>
>> Anirudh Loya | Android Developer**
>>
>> Desk: +9140-30681824 | Mobile: +91*9246561265*
>>
>>
>>
>>  --
> 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 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