Re: [android-developers] Re: Can't stop debugging

2013-01-01 Thread Todd Painton
I was just plagued with the exact same problem. Your steps fixed it for me too. This is definitely a problem with the phone. On Wednesday, May 19, 2010 2:06:36 AM UTC-5, String wrote: On May 19, 1:30 am, brucko geoff.bruck...@gmail.com wrote: Do you happen to have... Debug.wait for

[android-developers] Re: help me urgent

2013-01-01 Thread Lew
sree wrote: i [sic] gave two single dimensional arrays one array prioritynamearray=alistpriorityname.toArray(new String[alistpriorityname.size()]); two array taskvaluesarray=taskvaluesarraylist.toArray(new String[taskvaluesarraylist.size()]); The above code i take two ArrayList and

Re: [android-developers] Re: help me urgent

2013-01-01 Thread sree android
After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) { for (int t = 0; t

[android-developers] HI BROS

2013-01-01 Thread sree android
After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) { for (int t = 0; t

[android-developers] Re: HI BROS

2013-01-01 Thread skink
sree android wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) {

[android-developers] api demo 4.0.3 com.example.android.apis.app.FragmentRetainInstance

2013-01-01 Thread Greenhand
I would like to ask about the com.example.android.apis.app.FragmentRetainInstance.java in android api demo 4.0.3, which demos how to use fragment to handle configuration changes such as rotation. At line 44-47 if (savedInstanceState == null) {

[android-developers] Re: Example gallery style view with fling, bounce, animation, etc

2013-01-01 Thread Rahul
Hello, How can i use this code to create a gallery. I want to create a gallery which is circular and stops at the end completing on cycle. Please help me. Thanks and regards, Rahul -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Reading from another app

2013-01-01 Thread Russell Wheeler
If I wish to use images stored in another app, that I've written, what is the best way to do this? Content provider or directly accessing the res folder? Thanks in advance Russ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Android 4.2.1 and Wake Locks

2013-01-01 Thread Tommy
Hi everyone, It seems that on my nexus 7 running android 4.2.1 the wake lock I have that on all other devices keeps the phone asleep and screen off to run a background service seems to wake the table up with the screen full bright. Why would it do this? I have a phone that is running 4.0.4 and

Re: [android-developers] Re: New OpenGL ES 2.0 Game Engine Option

2013-01-01 Thread Robert Green
Thanks bob! That game was from before BatteryTech and was the reason we built a proper game engine. Robert Green DIY at http://www.rbgrn.net/ On Mon, Dec 31, 2012 at 7:38 PM, bob b...@coolfone.comze.com wrote: Thanks. By the way, I tried your Deadly Chambers game. It is impressive. I

Re: [android-developers] Android 4.2.1 and Wake Locks

2013-01-01 Thread Mark Murphy
On Tue, Jan 1, 2013 at 12:29 PM, Tommy droi...@gmail.com wrote: It seems that on my nexus 7 running android 4.2.1 the wake lock I have that on all other devices keeps the phone asleep and screen off to run a background service seems to wake the table up with the screen full bright. Why would

Re: [android-developers] Re: help me urgent

2013-01-01 Thread Lew
sree wrote: After takeing two one dimensional arrays, i [sic] prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; Please follow the Java naming conventions. It will benefit you, too. Also, array (or

Re: [android-developers] Re: help me urgent

2013-01-01 Thread Lew
Lew wrote: Foo results = new Foo [tasks.length] [priorities.length]; for (int tx = 0; tx tasks.length; ++tx) { for (int px = 0; ix priorities.length; ++px) { Task task = tasks[tx]; Priority priority = priorities[px]; results [px][tx] =

Re: [android-developers] How can an app cause a hard freeze?

2013-01-01 Thread Nathan
On Friday, December 28, 2012 4:45:44 PM UTC-8, Mark Murphy (a Commons Guy) wrote: On Fri, Dec 28, 2012 at 7:34 PM, Nathan nathan@gmail.comjavascript: wrote: Here are a few things I suspect might cause these things: Firmware/hardware errors in the device: Device or storage

Re: [android-developers] Network File browser

2013-01-01 Thread Todd Grigsby
See http://www.samba.org On Dec 31, 2012 10:26 PM, satish bhoyar getsatonl...@gmail.com wrote: hi all, Happy new year to all of you. I am trying to make application like file browser. the constraint is I want to browse the files that are shared on the network in my company. My android

RE: [android-developers] Android 4.2.1 and Wake Locks

2013-01-01 Thread Tommy
That appears to have worked. I'll be honest, I have no idea why or when that 2nd parameter got put in. As always, thank you mark for the advice! -Original Message- From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Mark Murphy Sent:

Re: [android-developers] Android 4.2.1 and Wake Locks

2013-01-01 Thread Mark Murphy
On Tue, Jan 1, 2013 at 2:26 PM, Tommy droi...@gmail.com wrote: I'll be honest, I have no idea why or when that 2nd parameter got put in. It would be useful for any of the other WakeLock types, where you want the screen to display (and to actually turn on if it is already off). I filed a feature

Re: [android-developers] Reading from another app

2013-01-01 Thread Latimerius
On Tue, Jan 1, 2013 at 6:08 PM, Russell Wheeler russellpeterwhee...@gmail.com wrote: If I wish to use images stored in another app, that I've written, what is the best way to do this? Content provider or directly accessing the res folder? I do almost the same, except that my images are in

[android-developers] Re: HI BROS

2013-01-01 Thread Lew
sree wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) { for

[android-developers] Re: HI BROS

2013-01-01 Thread Matt Kanninen
OP's post needs better subject line. I was expecting a happy new year message. On Tuesday, January 1, 2013 2:22:49 PM UTC-8, Lew wrote: sree wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new

Re: [android-developers] Reading from another app

2013-01-01 Thread Russell Wheeler
Latimerius, So how do you directly access them from the assets folder? Doing it this way, are the images available to anyone who has root access? i.e. can they steal your images? Why do you use assets? For ease, or for some other reason? I thought it would be better to have them in the res

Re: [android-developers] Replacement for MODE_WORLD_READABLE

2013-01-01 Thread William Ferguson
Thanks Mark that's perfect. I'd always shied away from ContentProviders because they looked miles too heavy weight and complex but that is a neat and simple solution. One question: Why the does #onCreate copy the target file? Is it just to validate that you can read the file? Shouldn't that

[android-developers] Reading from another app - resources/assets (Take 2!)

2013-01-01 Thread Russell Wheeler
As my previous question seems to have got hijacked by someone else I'll ask again, and hopefully get additional responses. I have included my original question plus latimerius' reply, and then my subsequent reply...

Re: [android-developers] Replacement for MODE_WORLD_READABLE

2013-01-01 Thread William Ferguson
Thanks Tre, as one of the ACRA committers I have pretty good idea of what's involved. But it's too heavy weight and not transparent enough to the user. Yes I could build it, but I'd rather spend effort elsewhere. William On Monday, December 31, 2012 1:54:41 PM UTC+10, TreKing wrote: On Sun,

[android-developers] Re: hi friends

2013-01-01 Thread Mariusz Fik
sree android wrote: Happy New Year to One And All. Please suggest me, The above attached image,How can i display that items.How can i add items particularly in Today or Tomarrow Textviews and also the line below of Today textview. Please send me replay with which concept is used and

Re: [android-developers] Reading from another app

2013-01-01 Thread RichardC
On Wednesday, January 2, 2013 1:20:30 AM UTC, Russell Wheeler wrote: Latimerius, So how do you directly access them from the assets folder? Doing it this way, are the images available to anyone who has root access? i.e. can they steal your images? APKs are world readable Why do you

Re: [android-developers] Replacement for MODE_WORLD_READABLE

2013-01-01 Thread TreKing
On Tue, Jan 1, 2013 at 7:24 PM, William Ferguson william.fergu...@xandar.com.au wrote: But it's too heavy weight and not transparent enough to the user. Yes I could build it, but I'd rather spend effort elsewhere. FWIW, I don't use the full ACRA library but implemented my own solution based

[android-developers] How to develop QR Reader application

2013-01-01 Thread askl
*Hi Friends,* * * *Just give me steps for develop QR reader application with related jar files. How to develop simple qr reader application?* *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] How to develop QR Reader application

2013-01-01 Thread RichardC
http://code.google.com/p/zxing/ -- 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] jjrynyfhvghbbnkjjjhrgtgghjjjy

2013-01-01 Thread Weipeigang
发自我的 iPod -- 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

[android-developers] Version 3: Query in-app product information

2013-01-01 Thread Nathan
I was enthusiastic when I read this about the new In App Purchase API. *The API also introduces a long-anticipated feature: the ability to query in-app product information directly from Google Play *I'm all for it. Maybe I don't have to host my own details on a third party server like now.

[android-developers] Install Button Not Showing in Google + Account

2013-01-01 Thread rishabh agrawal
Hi I am integrating Google +1 api in my android application for +1 Recommendation sharing.When i share my application using android phone install button not show in google+ account .Where user can be directly download.But when i share using web browser it show install button. Kindly

Re: [android-developers] Network File browser

2013-01-01 Thread Sat
Cool thanks .. will check it out .. On Wednesday, January 2, 2013 12:44:56 AM UTC+5:30, Todd wrote: See http://www.samba.org On Dec 31, 2012 10:26 PM, satish bhoyar getsat...@gmail.comjavascript: wrote: hi all, Happy new year to all of you. I am trying to make application like file

[android-developers] no domain

2013-01-01 Thread bob
What is the convention for naming your APK package if you don't have your own domain name? -- 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

Re: [android-developers] no domain

2013-01-01 Thread Mário César Mancinelli de Araújo
Just create one as you whant. What people usually do is: com.NameOfYourCompany.NameOfYoutSoftware But basically you can put whatever you want. Best regards. Em 02/01/2013 04:12, bob b...@coolfone.comze.com escreveu: What is the convention for naming your APK package if you don't have your

Re: [android-developers] Re: How to compile Android Launcher source code?

2013-01-01 Thread galapogos
On Monday, December 31, 2012 9:07:46 PM UTC+8, Mark Murphy (a Commons Guy) wrote: On Sun, Dec 30, 2012 at 11:43 PM, galapogos goi...@gmail.comjavascript: wrote: I'm specifically trying to first get the ICS AOSP launcher to install on any ICS phone, and then modify it with some