Re: [android-developers] Alaram Manager after 5 min

2012-07-07 Thread TreKing
On Fri, Jul 6, 2012 at 5:21 AM, Rahul Kaushik rahulkaushi...@gmail.comwrote: I need to call AlarmReceiver Call after evry 5 min but it is getting caaled after every sec pls tell wt am doing wrong You are not calculating 5 minutes in milliseconds correctly.

Re: [android-developers] Re: Android 4.1 Jelly Bean GIF Images Not Showing?

2012-07-07 Thread Zsolt Vasvari
If this happens on hardware but not on the emulator, my guess is that this is not really a PNG/GIF issue. I couldn't get Google I/O tickets either, so I cannot help. On Friday, July 6, 2012 11:50:43 PM UTC+8, Josh F. wrote: I will create the bug report as soon as I can get a development

[android-developers] upload app to google store ..

2012-07-07 Thread ala hammad
hello all , i want to ask how much time need to confirm my app from google store ?? 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

Re: [android-developers] UPD packets doesn't arrive on a Samsung Galaxy Tab 7.7 but they arrive on a HTC Desire

2012-07-07 Thread VansFannel
And, what do you recommend me? Is there a way to configure UDP broadcast that I'm not using? On Saturday, July 7, 2012 2:15:40 AM UTC+2, Harri Smått wrote: Are you sure 255.255.255.255 is the correct broadcast address you want to use? It might be a good idea to give other private IP

[android-developers] Re: Bluetooth chat bug?

2012-07-07 Thread gjs
Hi, And by that logic device might be null as well... Maybe check the source code. Regards On Jul 7, 5:12 am, bob b...@coolfone.comze.com wrote: I'm looking at the Bluetooth chat example:             // When discovery finds a device             if

[android-developers] Configure Android to receive UDP broadcast packets

2012-07-07 Thread VansFannel
I'm trying to develop an Android 2.2 application but I'm having a lot of problems with UDP sockets. I have two phones, and HTC Desire 2.2.2 and Samsung Galaxy S. I'm developing a program that will wait to receive UDP Broadcast packets send by a device that sends UDP broadcast packets to

[android-developers] Re: OutOfMemoryException

2012-07-07 Thread gjs
Hi, It is unlikely you would need all 1000 loaded at the same time, try a different approach perhaps load on demand as needed. Regards On Jul 7, 2:51 am, RichardC richard.crit...@googlemail.com wrote: How large are your images (not file size, but width*hight*bits-per-pixel) images are

[android-developers] detect home screen arrival

2012-07-07 Thread Narendra Singh Rathore
Hello all, My requirement is to detect the home screen arrival in two cases - 1) After closing any application, 2) unlocking the home screen lock. Further, on home screen detection, I want to capture the time and save it for my use. I am using service (containing thread) for this purpose. I am

[android-developers] Images storage

2012-07-07 Thread pinicius
It is recommended in any situation save images in a database? Or it is always best done in the sd card? 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

Re: [android-developers] detect home screen arrival

2012-07-07 Thread Mark Murphy
Write your own home screen. On Sat, Jul 7, 2012 at 4:20 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Hello all, My requirement is to detect the home screen arrival in two cases - 1) After closing any application, 2) unlocking the home screen lock. Further, on home screen

Re: [android-developers] WebView.setEmbeddedTitleBar gone in Jelly Bean? Which alternatives?

2012-07-07 Thread sven
Hi, I am totally impressed: The implementation works like a charme! Many many thanks for providing this. Best regards Sven -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Bluetooth chat bug?

2012-07-07 Thread Nasir Aftab
Same thing I face in past . . .it looks it is due to cache of bluetooth something like this .. What Happend according to me Bluetooth 1st search for devices then get its name . . After searching devices when android bluetooth API try to get its name it goes out of range . . that gives null .. .

Re: [android-developers] Updating text in a DialogFragment

2012-07-07 Thread Raymond Rodgers
On 07/06/2012 11:31 AM, Justin Anderson wrote: Please post the relevant code... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware public class MyActivity extends FragmentActivity { SectionsPagerAdapter mSectionsPagerAdapter; ViewPager mViewPager;

Re: [android-developers] Can't get AVD to run my noddy app!

2012-07-07 Thread Doug Ponsford
Ok, I waited for about 10 minutes the first time around - I would have thought that would be long enough? I have to reinstall it again anyway, so I'll try Java 1.6. I'll also go for Eclipse Helios and have a go with that. Thanks. On Tuesday, 3 July 2012 00:23:42 UTC+1, TreKing wrote:

Re: [android-developers] Defining custom drawables in XML

2012-07-07 Thread Y2i
Hi Romain, Has this been changed or are the docs incorrect? http://developer.android.com/guide/topics/graphics/2d-graphics.html#drawables-from-xml Any Drawable subclass that supports the inflate() method can be defined in XML and instantiated by your application. Thank you! -- You received

[android-developers] Re: How to improve performance for drawing with background image?

2012-07-07 Thread Nobu Games
I assume you are using a custom view for drawing. First of all you need to set up a Bitmap object http://developer.android.com/reference/android/graphics/Bitmap.html#createBitmap%28int,%20int,%20android.graphics.Bitmap.Config%29of the size of your drawing view. This is possible after the view

[android-developers] Re: In App Billing V2: Item not found, but purchase OK

2012-07-07 Thread John
Appreciate your help !! -John On Friday, July 6, 2012 8:15:56 PM UTC-7, fibercode wrote: This is a bug in the sample Dungeons application in the onClick method for the purchase button. I posted a solution here: http://stackoverflow.com/a/11371927/625030 The supplied method has a bug in

[android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
Just wondering, how are Android devices with cameras 8 MP or higher supported in Java, when just taking the photo is either enough to violate the memory limits, or is close to it (particularly for 10+ MP cameras)? And how would I, in my camera app, provide that same support? Thanks, --jim --

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham spooky1...@gmail.com wrote: Just wondering, how are Android devices with cameras 8 MP or higher supported in Java, when just taking the photo is either enough to violate the memory limits, or is close to it (particularly for 10+ MP cameras)? The heap

[android-developers] media controller

2012-07-07 Thread Sadhna Upadhyay
Hi everybody, can some one tell me how to add volume controller in android as it (volume controller)is in youtube.please help me if any one has any idea about this. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Image Morphing

2012-07-07 Thread Sadhna Upadhyay
Hi everybody, can some one tell me that how to do image morphing in android,is it possible or not if yes then how ? pls 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

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:15:38PM -0400, Mark Murphy wrote: On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham spooky1...@gmail.com wrote: Just wondering, how are Android devices with cameras 8 MP or higher supported in Java, when just taking the photo is either enough to violate the memory

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:22 PM, Jim Graham spooky1...@gmail.com wrote: On Sat, Jul 07, 2012 at 03:15:38PM -0400, Mark Murphy wrote: On Sat, Jul 7, 2012 at 3:13 PM, Jim Graham spooky1...@gmail.com wrote: Just wondering, how are Android devices with cameras 8 MP or higher supported in Java,

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:26:15PM -0400, Mark Murphy wrote: On Sat, Jul 7, 2012 at 3:22 PM, Jim Graham spooky1...@gmail.com wrote: The heap sizes are generally larger for such devices. Does this mean that I can't support those? I have no idea what you mean by that. If your app is

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 3:33 PM, Jim Graham spooky1...@gmail.com wrote: No, but it's my alternative for blending any photographic color filters (e.g., solid color, graduated, and/or split-field) with the photo, and then doing stuff like brightness, ontrast, color balance, gamma, and so on,

Re: [android-developers] how are Android cameras 8 MP and up supported in Java?

2012-07-07 Thread Jim Graham
On Sat, Jul 07, 2012 at 03:41:26PM -0400, Mark Murphy wrote: On Sat, Jul 7, 2012 at 3:33 PM, Jim Graham spooky1...@gmail.com wrote: No, but it's my alternative for blending any photographic color filters (e.g., solid color, graduated, and/or split-field) with the photo, and then doing stuff

Re: [android-developers] Image Morphing

2012-07-07 Thread Fred Niggle
Hi everybody, can some one tell me that how to do image morphing in android,is it possible or not if yes then how ? *Yes it is possible.* pls help me. *First* use google, locate some java programming tutorials and work through them, *then* when you find something problematic post here

Re: [android-developers] media controller

2012-07-07 Thread Fred Niggle
Did you search google? On 7 July 2012 20:19, Sadhna Upadhyay sadhna.braah...@gmail.com wrote: Hi everybody, can some one tell me how to add volume controller in android as it (volume controller)is in youtube.please help me if any one has any idea about this. -- You received

Re: [android-developers] Image Morphing

2012-07-07 Thread Nobu Games
Oh my god, I want to marry your post On Saturday, July 7, 2012 3:25:36 PM UTC-5, Fred Niggle wrote: Hi everybody, can some one tell me that how to do image morphing in android,is it possible or not if yes then how ? *Yes it is possible.* pls help me. *First* use google, locate

[android-developers] Android app for office (customer point of view)

2012-07-07 Thread Rafael
Hello, Google needs investing in an office application for Android. If not, will suffer much from Windows RT. It needs to invest in productivity of Android and not in nice - cool graphical features Cheers -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Android app for office (customer point of view)

2012-07-07 Thread Mark Murphy
On Sat, Jul 7, 2012 at 5:20 PM, Rafael blackbitshi...@googlemail.com wrote: Google needs investing in an office application for Android. If not, will suffer much from Windows RT. It needs to invest in productivity of Android and not in nice - cool graphical features This list is for

[android-developers] Re: Issues extending ListView in Android

2012-07-07 Thread G. Blake Meike
I'd say you've got yourself a bug. Very nice work. This code, run first under java 6, then under Android, confirms it for me: package net.callmeike.sandbox.p1; public class BaseClass { public void run() { callFoo(); } void foo() { System.out.println(P1 foo: + this); } private

[android-developers] Image Morphing

2012-07-07 Thread dan.x.sheph...@googlemail.com
Image morphing can be implemented as easily on android as any other computer, you probably are better off learning the method first forgetting the fact you want to implement it on android. There are many tachniques. A good place to start may be to google point bassed morphing with thin plate

[android-developers] media controller

2012-07-07 Thread dan.x.sheph...@googlemail.com
Some things one needs to find out oneself. Check out android developers site, I'm sure it will be somewhere in the sdk documentation. One thing to note if i remember rightly is the same volume control buttons work for turning up or down volume for the ring as the media so the target depends on

Re: [android-developers] Re: Issues extending ListView in Android

2012-07-07 Thread Romain Guy
It is indeed a known bug on our side. As for protected methods, you cannot override them if they are marked final. On Jul 7, 2012 2:58 PM, G. Blake Meike blake.me...@gmail.com wrote: I'd say you've got yourself a bug. Very nice work. This code, run first under java 6, then under Android,

[android-developers] Passing a string to a runnable

2012-07-07 Thread Yamanoor Sai Ram
Hi, I have a runnable in my app that runs an animation. I would like to update a variable so that animation varies according to the data from bluetooth. This is the function that reads the string in the runnable: public void Message(String Message) { String r = Message; try {

Re: [android-developers] Transfering image file between two 2 emulators

2012-07-07 Thread Albert Rosa
Rolplkttl L sent from my mobile thoughts. On Jul 7, 2012 12:30 AM, Akki akshay.iitr@gmail.com wrote: I was trying to send an image file between 2 emulators using a TCP socket connection.The socket connection has been successfully made and the image file is stored on the SD-card of one of

[android-developers] Re: Passing a string to a runnable

2012-07-07 Thread G. Blake Meike
I really can't figure out what you are asking here. There's no evidence or a runnable. I'm guessing that m and myNum are data members? Are they being updated from two different threads? G. Blake Meike Marakana The second edition of Programming Android is now on-line:

[android-developers] Motorola Razr ICS upgrade broke my app

2012-07-07 Thread yves...@gmail.com
We have an app on the Market, which works for ICS (we tried on Galaxy Nexus and Galaxy S3 etc), and older android system, like original Razr. But with the new ICS upgrade to razr, this app doesn't work anymore. Here is the issue. This app basically captures an image, and saves it to the sdcard

Re: [android-developers] application launching process...?

2012-07-07 Thread Abhilash baddam
Hi, I have tried but I didn't get it, Generally SystemServer(calls from SystemServer.java file) starts all systemservices after that how the Systemapps are loading I am not getting. can anyone please help me on this? On Wed, Jul 4, 2012 at 9:35 PM, Abhilash baddam