[android-developers] Writting/Reading Sync settings - Possible?

2009-01-11 Thread code_android_festival_way
Hello. I have seen several applications in the market that enable you to toggle your sync settings. (for example ToggleSettings) How is this done? I have found the permissions to read and write the sync settings but I don't really know how to to that. Could someone drop me an example how to

[android-developers] Re: Eclipse File Explorer doesn't work on G1

2009-01-11 Thread Rafael Fernandes
in fact is supposed to be like that, this prevents an app to access data from another... even the user is different, if you wanna do such dir navigation and/or install apps you should use adb, something like... 1 - adb shell (connect to your device) 2 - su - (become super user on the shell) 3 -

[android-developers] Re: WebView: Need help with local file Urls in the browser

2009-01-11 Thread Mariano Kamp
Hey Fred, I assume you are talking about static content that you deliver with your application? I am looking for a solution to display a html page that I downloaded from the net when the net is available and display when the net is no longer available and this should include all the references

[android-developers] Re: Change linear layout programmatically - problem

2009-01-11 Thread Evgeny V
Works now. Thanks public class BBB extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.bbb); LinearLayout layout = (LinearLayout)findViewById(R.id.layoutInputs2);

[android-developers] Re: Is it possible to replace or extend the dialer application ?

2009-01-11 Thread shimo...@gmail.com
Hi, How about an option to assign pressing the PHONE button to launch my app ? (when there are no pending incoming calls) TIA On Jan 10, 2:35 am, Dianne Hackborn hack...@android.com wrote: It would be nice to have a way to replace the incoming call screen or other parts of the incoming call

[android-developers] Re: the Trackball and MotionEvents

2009-01-11 Thread blake
Dianne! Brilliant answer! Thank you very much! Pressing my luck, where does that translation happen? RootView? Activity? Many thanks! -blake On Jan 10, 6:23 pm, Dianne Hackborn hack...@android.com wrote: The framework translates raw trackball events into DPAD events if nobody consumes

[android-developers] Re: Eclipse File Explorer doesn't work on G1

2009-01-11 Thread blake
Umm... Eclipse *does* use adb. Perhaps the Eclipse plugin doesn't su? Perhaps that works talking to the emulator, but not when talking to an actual device? I think it is probably a bug. -blake On Jan 11, 12:23 am, Rafael Fernandes luizraf...@gmail.com wrote: in fact is supposed to be like

[android-developers] Re: Low on space

2009-01-11 Thread Stoyan Damov
Thanks for the response, but Package installer's usage is 0b :( The biggest app is Browser. Its Data size is reported to be 3MB but I'd expect that the device memory is at least 128 MB and of it ~70 are usable. Now, on top of the brand new device I've put no more than 5 MBs of apps, and I have

[android-developers] HELP! (was Re: Low on space)

2009-01-11 Thread Stoyan Damov
Guys, Does anyone know what's the *FREE* internal memory initially when you get the phone? I've heard ~70MB, ~96MB, etc. Apparently not for me, it appears that I have 9MB! :O :O :O This is getting ridiculous, I've cleared the browser's cache and got 2MB back, I have only *ONE* application

[android-developers] Emulator crashs when accessing sd card settings

2009-01-11 Thread Mariano Kamp
Hi, when I open the settings screen in the emulator it crashs ... This happens no matter if I start the emulator with my own image using -sdcard or without this switch. I wiped the user data. Anything else I can reset? Anybody else experiencing it? Cheers, Mariano

[android-developers] WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mariano Kamp
Hi, I am trying to browse files from the sd card, but haven't had any success so far. Maybe I am doing something wrong, so I'd like to write down the steps for your feedback. The sample contains of an html file that references a png. (1) localhost:~ mkamp$ cat test.html html

[android-developers] Full multitouch working on the G1, new approach (video + source)

2009-01-11 Thread luke
I have multitouch working on the G1 in a way that is backwards- compatible with single-touch applications. I capture the multitouch events and then hijack an unused field in MotionEvent to pass the multitouch events in a way that only affects programs that have been designed to work in

[android-developers] How to stop the device from sleeping

2009-01-11 Thread Mike Perrow
Hi, I released a Hypnotic Spiral demo on the market yesterday. One of the most requested features from the comments I've received is to stop the phone from sleeping after a few minutes of no use. Is there a way to deep the phone awake while my activity is running? Thanks, Mike

[android-developers] Multiple alarms - Intent aims at the same service but different values - Not possible?

2009-01-11 Thread code_android_festival_way
Hello. At the moment I'm trying to register/set two alarms that open up a background service. Both alarms should open up the same service doing something depending on the extras that come with the intent. (the alarms have different startup and interval values) Why can't I do that. I get only

[android-developers] Re: Port my iPhone game

2009-01-11 Thread Steve
Ok thanks guys, I've got a few options to consider now: i. do not release Android port ii. manually rewrite in Java iii. use auto conversion software for c++ - Java iv. contract out to get the port written I have also contacted regarding iii and iv so I'll have a think about it and see what

[android-developers] SQLite in WebView, is it possible??

2009-01-11 Thread Fred Grott(shareme)
As some of you know I am pioneering doing a Loopt clone using web based code including app logic wrapped with the PhoneGap native libs and a webview class so that it can run on both Android and iPhone with the same web based code including the app logic code. IPhone demo videos should be up at

[android-developers] Re: SQLite in WebView, is it possible??

2009-01-11 Thread Mark Murphy
My question is is there any way to access SQLite via webview as the bits and straps I was able to get indicate maybe not that I would have to write a native class and than hook PhoneGap js api into that.. If by native class you mean Java then, yes, you would need to expose relevant APIs via

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-11 Thread nickthecook
I'm still seeing this problem as well. I can boot my phone, start my app, load a single image (~300k) and have this error. I'm loading images with the BitmapFactory.decodeByteArray() method, which calls BitmapFactory.nativeDecodeByteArray(). What is interesting is that after I added a background

[android-developers] Re: Full multitouch working on the G1, new approach (video + source)

2009-01-11 Thread Sena Gbeckor-Kove
Great! Does anybody know if this is ok IP wise, or is a lawsuit likely? S On 11 Jan 2009, at 13:30, luke wrote: I have multitouch working on the G1 in a way that is backwards- compatible with single-touch applications. I capture the multitouch events and then hijack an unused field in

[android-developers] Re: How to stop the device from sleeping

2009-01-11 Thread Al
You can use a wakelock: http://code.google.com/android/reference/android/os/PowerManager.html On Jan 11, 1:14 pm, Mike Perrow mike.per...@gmail.com wrote: Hi, I released a Hypnotic Spiral demo on the market yesterday. One of the most requested features from the comments I've received is to

[android-developers] Re: WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mark Murphy
Mariano Kamp wrote: Hi, I am trying to browse files from the sd card, but haven't had any success so far. Maybe I am doing something wrong, so I'd like to write down the steps for your feedback. The sample contains of an html file that references a png. (1) localhost:~ mkamp$

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Mark Murphy
Stoyan Damov wrote: Does anyone know what's the *FREE* internal memory initially when you get the phone? I've heard ~70MB, ~96MB, etc. ~70MB. Apparently not for me, it appears that I have 9MB! Perhaps now. Most likely, you had ~70MB when you got the phone. This is getting ridiculous,

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Disconnect
On Sun, Jan 11, 2009 at 12:08 PM, Mark Murphy mmur...@commonsware.comwrote: The top entry is Android Market, at 14MB. There is a known bug in the Android Market where it does not clear its cache proactively. But, it will flush the cache when it is needed, so I effectively have closer to 49MB

[android-developers] Performance Problem with ListView / Styled TextView

2009-01-11 Thread Mariano Kamp
Hi, I have a performance problem in a ListView. The problem seems to be that it takes too long to setup each individual row. It scrolls very, very painfully slow, because of that. The actual code renders an Entry differently depending on the read state and if it is changed. When not

[android-developers] Re: WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mariano Kamp
OMG. That is such a blow. I didn't read anything like that in the WebView documentation. I spent my vacation writing an offline client for Google Reader. Puh. I already paid for a logo etc. Man that sucks ;-( Any idea how to work around that? I actually don't need it to work in the browser just

[android-developers] Re: WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mariano Kamp
Hey Mark. Mariano Kamp wrote: OMG. That is such a blow. I didn't read anything like that in the WebView documentation. I didn't say WebView. I said Browser. Browser != WebView. Sorry, I know, I didn't want to imply otherwise. Any idea how to work around that? Writing a ContentProvider

[android-developers] Re: WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mark Murphy
Mariano Kamp wrote: I don't see how that should work? Wouldn't that be the same as the FileContentProvider? I cannot find a FileContentProvider class in the SDK or SDK samples. I see where there is one in the source code, and, yes, I think that's the basic idea. How would WebView learn

[android-developers] Re: WebView/Browser: How to browse files from the sdcard?

2009-01-11 Thread Mariano Kamp
Once again, thanks. I found this tutorial: http://www.anddev.org/tutproviding_data_in_a_contentprovider-t4073.html and will try that. I checked that the ContentProvider is called from the Browser... So the rest should work. On Sun, Jan 11, 2009 at 7:58 PM, Mark Murphy

[android-developers] Re: Recording Audio

2009-01-11 Thread hmmm
To Record audio to a new file on sd card I did as follows and worked for me with emulator and mic. But don't know about buffers or sockets. And not sure if this is a good way but anyway works. To run emulator with sd card you do mksdcard 512M sdimg.iso then start emulator as 'emulator.exe

[android-developers] DOM problem!!! getNodeValue() doesn't work!!

2009-01-11 Thread Cattivik
I have a big problem!! I want to get e value of dom document Node with getNodeValue() but it does't work. Example: Node node = childs.item(i); String value = node.getNodeValue() Please HELP!!! It is urgent --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Recording Audio

2009-01-11 Thread Stjepan Rajko
On Sun, Jan 11, 2009 at 12:24 AM, Tez earlencefe...@gmail.com wrote: Hi, I want to record audio from the emulator using the mic. Can anyone send me some sample code on how to do this. Also, I want to know whether it is possible to redirect this mic o/p to a memory buffer or network socket.

[android-developers] Reusing object for message

2009-01-11 Thread Al
Hi, I'm trying to avoid recreating an object for each time I want to send a message, but for some reason, only old data gets sent unless I create a new object each time. I've declared an Object array of the size I need inside my class and then set the variables passed to my method to each index

[android-developers] Re: Manipulate Drawable Resource

2009-01-11 Thread Kyle
Thanks for all of the responses guys. I am referring to the actual notification icons that show up in the title bar. I know that a Drawable can be manipulated in many ways and that's what I would like to do in order to update the icon but the main problem here is that the Notification object

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Stoyan Damov
On Sun, Jan 11, 2009 at 7:08 PM, Mark Murphy mmur...@commonsware.com wrote: Stoyan Damov wrote: Does anyone know what's the *FREE* internal memory initially when you get the phone? I've heard ~70MB, ~96MB, etc. ~70MB. Apparently not for me, it appears that I have 9MB! Perhaps now. Most

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Stoyan Damov
On Sun, Jan 11, 2009 at 7:21 PM, Disconnect dc.disconn...@gmail.com wrote: And for the record, he can downgrade to rc29 and apply a root-enabled rc30 version of his choice. http://andblogs.net/2009/01/rc30-downgrade-merry-christmas-everyone/ I'm happy to downgrade to RC30 but have the same

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Stoyan Damov
btw, *THIS* is ridiculous. Just deleted that app which takes 2MB, and deleted my app as well. When I went to see the free space it HADN'T CHANGED!!! I am pretty sure that's a bug but more importantly that's a HORRIBLE bug because the free space is reported as if I haven't deleted anything even

[android-developers] Re: Full multitouch working on the G1, new approach (video + source)

2009-01-11 Thread luke
My personal take is that there is a whole lot of prior art (the iPhone was not the first by a long shot), so it's probably not super- defensible in court... but Apple has deep pockets and an elite image to maintain. They apparently have about 200 patents on the iPhone, two of which especially

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Mark Murphy
Stoyan Damov wrote: If the rough total of space reported by the Manage Applications list, plus the amount of reported free storage space, does not add up to anything near ~70MB, then something on your device is leaking storage, and I would recommend a reset. Now I have a very important

[android-developers] Re: the Trackball and MotionEvents

2009-01-11 Thread rollbak
It is more easy than that. If you implement onTrackBallEvent in your activity and you return true; The event is consumed by you, otherwise it also triggers a onKeyUp event with a DPAD keycode. regards, Lucas On Jan 11, 7:39 am, blake blake.me...@gmail.com wrote: Dianne!  Brilliant answer!  

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Mark Murphy
Stoyan Damov wrote: On Mon, Jan 12, 2009 at 12:34 AM, Mark Murphy mmur...@commonsware.com wrote: No mention of re-activation, and you would think T-Mobile would bring up that point, considering it would likely involve their tech support folk. Actually the post at

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Stoyan Damov
Thanks Mark, but hang on... apparently I have misunderstood something. Are you saying that based on what you read I won't have to re-activate the phone (i.e. have to enter the SIM's unlock code, which presumably, based on numerous posts I can buy for ~$25) but merely add my carrier's EDGE's APN

[android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Mark Murphy
Stoyan Damov wrote: but hang on... apparently I have misunderstood something. Are you saying that based on what you read I won't have to re-activate the phone (i.e. have to enter the SIM's unlock code, which presumably, based on numerous posts I can buy for ~$25) but merely add my

[android-developers] Re: Port my iPhone game

2009-01-11 Thread beachy
Hi Steve, Thought I would chip in my two cents.. I have worked on a few conversion projects the biggest being a social welfare system that was converted to java. From everything i have experienced in conversion projects i would say you are better to just recreate the code using your old code as

[android-developers] Is there a simple way to do Key/Value with Spinners?

2009-01-11 Thread Robert Green
I'm familiar with arrays.xml to define static data sets for spinners and this works fine except that so far I am only able to define lists of values for the spinner. What I need now is to have keys associated with those values so that in the future when I add new elements in arbitrary positions,

[android-developers] charging for upgrades to free apps?

2009-01-11 Thread chris.cap...@gmail.com
i have a free app and i want to put out an updated version that isn't free. when us devs are able to start charging, if i put out this updated version in place of the free app, will the people that already downloaded the app for free have to pay for the upgrade or will they get it for free? i

[android-developers] how to map physical address to map?

2009-01-11 Thread Faber Fedor
I've got maps running in my emulator (Yay!). My next step is to take an address entered by the user and map it. How? I thought I could do something like I do on the web and directly ask Google which would then return the latlong for the address, but I don't see anything in the API that would

[android-developers] Re: how to map physical address to map?

2009-01-11 Thread Faber Fedor
Never mind. I found the Geocoder class! Now to figure out how it works... On Sun, Jan 11, 2009 at 7:58 PM, Faber Fedor faberfe...@gmail.com wrote: I've got maps running in my emulator (Yay!). My next step is to take an address entered by the user and map it. How? I thought I could do

[android-developers] Notifications from a service, forced Intent.FLAG_ACTIVITY_NEW_TASK problem

2009-01-11 Thread Torgny
I am trying to create a notification in a service to notify the user that the application's data has updated in the background. I want the application to resume when they click the notification. When I click the notification I get this message in DDMS: 01-11 16:16:10.574:

[android-developers] Android developers are invited to join the team!

2009-01-11 Thread SinFrancis
Android is strong, the future integration of computers and mobile phones leader! Now hope that more people support the cause of Android! We invite you to join! We base ourselves on the Android platform, committed to the development of Android platform software, Android platform for the

Re: BUG, TERRIBLE BUG!!! Re: [android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Dianne Hackborn
On Sun, Jan 11, 2009 at 5:04 PM, Stoyan Damov stoyan.da...@gmail.comwrote: Is there *anyone* who'll dare to tell me there's no bug in Android? Why would anyone claim there are no bugs in -any- piece of complicated software? (Except I guess TeX). How the fuck I don't have *anything*

[android-developers] Re: the Trackball and MotionEvents

2009-01-11 Thread Dianne Hackborn
The translation is in RootView. On Sun, Jan 11, 2009 at 1:39 AM, blake blake.me...@gmail.com wrote: Dianne! Brilliant answer! Thank you very much! Pressing my luck, where does that translation happen? RootView? Activity? Many thanks! -blake On Jan 10, 6:23 pm, Dianne Hackborn

[android-developers] Re: Multiple alarms - Intent aims at the same service but different values - Not possible?

2009-01-11 Thread Dianne Hackborn
The identity of an Intent is based on the action, data, type, and categories; the extras are not considered. If you want to have two different PendingIntent objects, you'll need to have something different about them in those basic fields. On Sun, Jan 11, 2009 at 5:24 AM,

[android-developers] Re: Is it possible to replace or extend the dialer application ?

2009-01-11 Thread Dianne Hackborn
I believe you can already do that. On Sun, Jan 11, 2009 at 1:23 AM, shimo...@gmail.com shimo...@gmail.comwrote: Hi, How about an option to assign pressing the PHONE button to launch my app ? (when there are no pending incoming calls) TIA On Jan 10, 2:35 am, Dianne Hackborn

Re: BUG, TERRIBLE BUG!!! Re: [android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Joel Knighton
Do you have busybox on the device? If so, I can help you find where the space is gone. With only the included android shell binaries, however, I don't know if I can. On Sun, Jan 11, 2009 at 8:33 PM, Dianne Hackborn hack...@android.comwrote: On Sun, Jan 11, 2009 at 5:04 PM, Stoyan Damov

[android-developers] Re: Accessing email

2009-01-11 Thread Casey Link
On Thu, Dec 11, 2008 at 7:50 AM, Nathan Ekstrom nat...@whiteboxdev.com wrote: I'm writing an application that provides status information. The status updates come through email so I need to get the status emails and parse them to figure out what the current status is. Hello, Did you ever

Re: BUG, TERRIBLE BUG!!! Re: [android-developers] Re: HELP! (was Re: Low on space)

2009-01-11 Thread Joel Knighton
Okay, Stoyan, if you want to do a ls -l -R and then email it to me ( joel.knigh...@gmail.com) I'll read through it and see if I notice a problem. (You can email straight from the terminal app) On Sun, Jan 11, 2009 at 8:41 PM, Joel Knighton joel.knigh...@gmail.comwrote: Do you have busybox on

[android-developers] Re: charging for upgrades to free apps?

2009-01-11 Thread Raymond Rodgers
chris.cap...@gmail.com wrote: i have a free app and i want to put out an updated version that isn't free. when us devs are able to start charging, if i put out this updated version in place of the free app, will the people that already downloaded the app for free have to pay for the upgrade

[android-developers] Animation image

2009-01-11 Thread Muthu Kumar K.
Hi All, I know android is not have the support of running .gif image. So i have 6 different images. I want to run this images by sequence like gif animation. Can any one help me. Thanks in Advance, Muthu Kumar K. --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: auto generation of Android.mk file

2009-01-11 Thread Kishor
Thanks David for your answer! Regards, Kishor On Fri, Jan 9, 2009 at 5:51 PM, David Turner di...@android.com wrote: You don't need one Android.mk per sub-directory. It's perfectly possible to use one top-level Android.mk that references all sources required for your project. just refer to

[android-developers] Re: Animation image

2009-01-11 Thread Mahesh Vaghela
Try to use a Flipper. Its easy On Mon, Jan 12, 2009 at 9:37 AM, Muthu Kumar K. muthum...@gmail.com wrote: Hi All, I know android is not have the support of running .gif image. So i have 6 different images. I want to run this images by sequence like gif animation. Can any one help me.

[android-developers] Display problem.

2009-01-11 Thread ipeg . student
Thanks for the greate help. But now i want to display list of strings. This code is helpful for converting the sms to string insteade of adapter. import

[android-developers] Re: the Trackball and MotionEvents

2009-01-11 Thread blake
Found it. Thanks very much. -blake On Jan 11, 6:38 pm, Dianne Hackborn hack...@android.com wrote: The translation is in RootView. On Sun, Jan 11, 2009 at 1:39 AM, blake blake.me...@gmail.com wrote: Dianne!  Brilliant answer!  Thank you very much! Pressing my luck, where does that

[android-developers] Re: Multiple alarms - Intent aims at the same service but different values - Not possible?

2009-01-11 Thread 伊泽
hello would you please tell the steps about the function call? I once posted about the alarm register issue: http://groups.google.com/group/android-developers/browse_thread/thread/304895040fa9f11/da4355589afa46a4?hl=enlnk=gstq=alarm#da4355589afa46a4 If you add alarm device in the routine,there

[android-developers] Android Market place stats

2009-01-11 Thread dbradby
Hi Everyone, For anyone interested in how apps in the Android market are ranking over time, I've put together a website at http://androidstats.com. Check it out and let me know what you think. Regards, Daniel -- iPhone, Android and Geolocation ramblings - http://jtribe.blogspot.com/

[android-developers] Re: Animation image

2009-01-11 Thread Ernest
Try to use the android.os.Handler.Handler() ,you could switch different image in imageview with delay time. On Jan 12, 12:29 pm, Mahesh Vaghela mah...@indianic.com wrote: Try  to use a Flipper. Its easy On Mon, Jan 12, 2009 at 9:37 AM, Muthu Kumar K. muthum...@gmail.com wrote: Hi All,

[android-developers] Re: Recording Audio

2009-01-11 Thread Lucius Fox
Thanks. how can I seutp the emulator to record audio? I am using Ubuntu as my development environment. How can I setup the emulator for that? Thank you. On Sun, Jan 11, 2009 at 2:23 PM, hmmm akul...@mail.ru wrote: To Record audio to a new file on sd card I did as follows and worked for me

[android-developers] Re: Recording Audio

2009-01-11 Thread hmmm
I'm using Windows and the only thing I did to the emulator was to emulate sd card as below. For some reason sd card seems to be necessary for sound recording. Apart from that, provided that your mic works with Windows, there's no need to setup anything. I don't know about Ubuntu but it should

[android-developers] Re: Animation image

2009-01-11 Thread hmmm
I thought Android does support animated gifs. I think I've seen the example in ApiDemos somewhere in their example they show animated_gif.gif from ApiDemos\res\drawable you could make a search in ApiDemos project to find out. - Original Message - From: Muthu Kumar K.

[android-developers] Re: DRAG AND DROP

2009-01-11 Thread kaushik sur
yes dianne and peli , both of u r right. and so i am digging into the launcher code and getting good result out of that. regards kaushik On Sun, Jan 11, 2009 at 8:04 AM, Dianne Hackborn hack...@android.comwrote: Fwiw, changing layout parameters is a really inefficient way to do animations on

[android-developers] Moving screen

2009-01-11 Thread ipeg . student
Hi developers ... I want to create a moving background in my application. Can anyone help me. Thanks in advance. please help me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Power management in Android

2009-01-11 Thread xroge...@gmail.com
How about reading on the capacity of battery via 'dumpsys battery'? I think the battery lifetime can be monitored by logging periodic readings on the current battery level. Is there any Android application showing the battery lifetime (or power consumption on system level or application level)?

[android-developers] Re: Full multitouch working on the G1, new approach (video + source)

2009-01-11 Thread Andrew Stadler
Unless an SDK is released with multi-touch support, this discussion is probably better off in android-discuss or android-platform. (Just trying to cut down on cross-posting) On Sun, Jan 11, 2009 at 2:34 PM, luke luke.hu...@gmail.com wrote: My personal take is that there is a whole lot of

[android-developers] Re: Multiple alarms - Intent aims at the same service but different values - Not possible?

2009-01-11 Thread code_android_festival_way
On 12 Jan., 06:27, 伊泽 wxc...@gmail.com wrote: hello would you please tell the steps about the function call? I once posted about the alarm register issue:http://groups.google.com/group/android-developers/browse_thread/threa... If you add alarm device in the routine,there maybe a problem.