[android-developers] Restart LogCat without restarting eclipse?

2010-03-10 Thread DCheeseman
I was wondering if anyone knew how to restart LogCat without rebooting eclipse? Every once in a while LogCat will just die while I'm working and it seems like there should be a to get it working again. I've tried restarting the adb task, but that was just a haphazard guess at a solution. Any

Re: [android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Mark Murphy
Luis wrote: For example, I could have an application to monitor the activities being performed in my system (at first, just the basic ones, like UI interaction), so I could just log all this information into a file, for example. You cannot monitor the activities performed in my system except

Re: [android-developers] How to Upgrade Application without losing data.

2010-03-10 Thread Mark Murphy
Caeser wrote: How to upgrade Android app without losing data ? Upgrading an Android app does not lose data by default. If app is already installed on device, it is not allowing the same app to install again. and one need to uninstall then reinstall app again. You can upgrade an application

[android-developers] Re: ADC3?

2010-03-10 Thread Mike dg
I have not even heard any rumors yet. On Mar 9, 7:13 pm, Mario Zechner badlogicga...@gmail.com wrote: I'd be interested in such knowledge too :) On 9 Mrz., 19:15, Robert Green rbgrn@gmail.com wrote: I just gotta ask... Does anyone have any knowledge of an upcoming ADC3?  :) -- You

Re: [android-developers] How do I simulate the Home key programmatically?

2010-03-10 Thread Mark Murphy
Wides wrote: Hi, I have a requirement to implement an Exit button in my Android application. Tell whoever gave you that requirement to eliminate the requirement. http://www.androidguys.com/2010/01/13/android-development-its-just-different/ I don't really care about killing the activity

[android-developers] Re: Animations between Intents

2010-03-10 Thread Mike dg
The SDK sample app, APIDemos, has an example. Run it and select, App- Activity-Animation to see it. It should be easy to find the code portion for this. Beware that this won't work on all devices and the users can disable these animations. -Mike dg On Mar 9, 4:30 am, djdamage06

[android-developers] Re: Is this the way to prefent ScrollView to overlap/go under the button bar?

2010-03-10 Thread Mike dg
You could try a linear layout as the top level layout and set the ScrollView layout_weight = 1 and the buttonbar layout to weight = 0; That worked for me in one of my apps. -Mike dg On Mar 8, 3:20 pm, Eelco eelcoaart...@gmail.com wrote: I want a scrollable table on my screen, and beneath that

[android-developers] Re: How to block incoming call in Android?

2010-03-10 Thread Kumar Bibek
Not possible. Thanks and Regards, Kumar Bibek On Mar 10, 2:40 pm, jitendra kumar android.jiten...@gmail.com wrote: Hi All, I want to develop one call control application on android. As we know android sdk does not provide any API which block incoming call due to security reasion. Is there

[android-developers] Re: Restart LogCat without restarting eclipse?

2010-03-10 Thread Mike dg
Click the DDMS tab and ini the device tab there should be a down arrow button next to the screenshot button. Press that and all the way at the bottom should be reset ADB. Hope this helps. Mike dg On Mar 10, 1:09 pm, DCheeseman nuvi...@gmail.com wrote: I was wondering if anyone knew how to

[android-developers] Force a connection OTA (even if you have a WiFi connection).

2010-03-10 Thread sdphil
is there a way to force a connection (http) to go over OTA (Over-The- Air) even if you have a wifi connection? tia. -- 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

[android-developers] Re: How to Upgrade Application without losing data.

2010-03-10 Thread Mike dg
It sounds like you may have installed the app with different signing keys. If you were launching the app on your device through Eclipse and then tried to install from the market then that is most likely the case. Another possibility is that you are using multiple PC's for development and the debug

[android-developers] Getting an Activity object from ActivityManager or ComponentName

2010-03-10 Thread RCP2278
First off, I apologize if this sounds like a trivial question with a trivial answer, but I'm currently stuck at trying to get an Activity object from ActivityManager or ComponentName. Ive been looking at the android developer docs to see if there are any APIs exposed that I can use so I can get

[android-developers] Re: How to display all contacts?

2010-03-10 Thread Nox
Thank you for your replies, but unfortunately it doesn´t work. If I open my app there´ll appear the error message: The application has stopped unexpectedly. Please try again. Do you know what I have to do now? On 10 Mrz., 16:56, Dmitri Plotnikov dplotni...@google.com wrote: Sorry, but the

Re: [android-developers] Getting an Activity object from ActivityManager or ComponentName

2010-03-10 Thread Mark Murphy
RCP2278 wrote: First off, I apologize if this sounds like a trivial question with a trivial answer, but I'm currently stuck at trying to get an Activity object from ActivityManager or ComponentName. Ive been looking at the android developer docs to see if there are any APIs exposed that I

Re: [android-developers] Re: How to display all contacts?

2010-03-10 Thread Mark Murphy
Nox wrote: Thank you for your replies, but unfortunately it doesn´t work. If I open my app there´ll appear the error message: The application has stopped unexpectedly. Please try again. Do you know what I have to do now? Use adb logcat, DDMS, or the DDMS perspective in Eclipse to look at

[android-developers] Re: How do I simulate the Home key programmatically?

2010-03-10 Thread Mike dg
The below code should work for triggering the home screen. Having said that, unless you have a custom device lacking home and back buttons, this is probably a bad idea. As is an exit button. And an exit button that doesn't really exit and just dumps you to the home screen is baffling. Those things

[android-developers] Re: reply soon

2010-03-10 Thread Mike dg
You'll need to be more specific. Are you developing for Android? -Mike dg On Mar 10, 5:21 am, student alsharewit...@gmail.com wrote: how to create if user click the link it should be updated to my webpage -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: singleTask + activity stack not preserved?

2010-03-10 Thread jotobjects
On Mar 10, 5:06 am, Stefan Klumpp stefan.klu...@gmail.com wrote: + If there is no intent_filter listed then even with launchMode=singleTask re-launch from Home returns to the last activity in the task. Okay if removing all intent-filter entries in the manifest is the solution (or temp.

[android-developers] Re: Getting an Activity object from ActivityManager or ComponentName

2010-03-10 Thread RCP2278
Thanks for the quick reply. What I mean get an Activity object basically is getting a reference to that Activity, something like the Instrumentation class does when it calls startActivitySync(), except I'm not using Instrumentation. For example: Activity a = what non-instrumentation API to use

[android-developers] Re: Contacts FAQ?

2010-03-10 Thread Berto
HCH pretty much hit it on the head. It appears as though there is a bug (or the last time I checked) that prevents Android from seeing your edit fields (they just simply skip over them when parsing your contacts.xml file). The only part I've gotten to work, which was all I really needed, is the

Re: [android-developers] Re: Getting an Activity object from ActivityManager or ComponentName

2010-03-10 Thread Mark Murphy
RCP2278 wrote: Thanks for the quick reply. What I mean get an Activity object basically is getting a reference to that Activity, something like the Instrumentation class does when it calls startActivitySync(), except I'm not using Instrumentation. For example: Activity a = what

[android-developers] Re: Force a connection OTA (even if you have a WiFi connection).

2010-03-10 Thread sdphil
hm... looks like it may not be doable... http://stackoverflow.com/questions/2230389/android-application-setting-connection-type On Mar 10, 10:26 am, sdphil phil.pellouch...@gmail.com wrote: is there a way to force a connection (http) to go over OTA (Over-The- Air) even if you have a wifi

[android-developers] Re: Getting an Activity object from ActivityManager or ComponentName

2010-03-10 Thread RCP2278
ok thanks. I apologize for the redundant question, I just did more google searches and I found a thread that discussed this already right after I sent out my last response. On Mar 10, 10:57 am, Mark Murphy mmur...@commonsware.com wrote: RCP2278 wrote: Thanks for the quick reply.  What I mean

[android-developers] Market Refund Policy

2010-03-10 Thread Mike dg
In December, there were new terms for the Market. A big note was You authorize Google to give the buyer a full refund of the Product price if the buyer requests the refund within 48 hours after purchase. It still seems that all references to the refund policy sitll state 24 hours.

[android-developers] Re: ADC3?

2010-03-10 Thread Maps.Huge.Info (Maps API Guru)
Google IO is still two months away. I would expect an announcement at that time. -John Coryat Radar Now! What Zip Code? -- 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 do I simulate the Home key programmatically?

2010-03-10 Thread TreKing
On Wed, Mar 10, 2010 at 10:23 AM, Wides erich.weid...@gmail.com wrote: I just want to have the same effect as pressing the Home button. So that application state is saved and can be returned to. What's wrong with just finish()'ing your activities? If I hit Exit on your app and instead of

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread JasonC
Took them 4 days for me On Mar 9, 11:20 pm, Arnon arnonse...@gmail.com wrote: Hi I have an app which on Feb. 28 had 9000+ downloads and a 4.2 stars rating. i didn't recieve any mail, so I contacted them and they asked me to fill the form. I filled the form last friday (March 5th) Does

[android-developers] Re: NullPointerException in SmsManager.sendTextMessage

2010-03-10 Thread justinh
Did you ever figure this out? It probably has to do with the fact that the Hero 200 runs 1.5 and the only available SmsManager is tailored for GSM, which the Hero 200 is not. android.telephony.gsm.SmsManager I'm interested in sending sms programmatically on the hero 200, as it seems frighteningly

[android-developers] Re: Problem with Embedded Widgets in Preferences

2010-03-10 Thread jotobjects
Did you try this RadioGroup rg = (RadioGroup)findViewById(R.id.radio_group_prefs); On Mar 1, 6:47 pm, mjk totoro.sla...@gmail.com wrote: So... turns out I was lying horribly. ;P  The line that instantiates prefView reads as such: RadioGroup prefView = (RadioGroup) sharingPrefs.getView(new

[android-developers] Re: Force a connection OTA (even if you have a WiFi connection).

2010-03-10 Thread sdphil
hm... looks like I could do this -- http://stackoverflow.com/questions/604535/is-it-possible-to-force-network-traffic-through-wifi-or-the-tmobile-network ... the sound of one hand clapping... On Mar 10, 11:04 am, sdphil phil.pellouch...@gmail.com wrote: hm...  looks like it may not be

[android-developers] Re: Task activity stack always reset when launched from Home

2010-03-10 Thread jotobjects
On Mar 2, 5:22 am, Neha nehas...@gmail.com wrote: I have tried launching OtherActivity from SingleTaskActivity in both these ways: Intent explicitIntent = new Intent(this, OtherActivity.class); explicitIntent.setComponent(new ComponentName(this, OtherActivity.class));

[android-developers] Client Twitter and Android

2010-03-10 Thread David Toledo
Hi All Exist some twitter clients that can integrate with android Thanks David -- 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

[android-developers] Re: Client Twitter and Android

2010-03-10 Thread Mike dg
Seesmic and Twidroid are popular Twitter clients that exist in the market. -Mike dg On Mar 10, 2:39 pm, David Toledo dtole...@gmail.com wrote: Hi All Exist some twitter clients that can integrate with android Thanks David -- You received this message because you are subscribed to the

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread TreKing
On Wed, Mar 10, 2010 at 1:20 AM, Arnon arnonse...@gmail.com wrote: I filled the form last friday (March 5th) Does anyone know how long does it take for them to send the confirmation mail? Took 3 days for me. If you filled it Friday I wouldn't count that, so start counting from Monday ...and

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Thomas Riley
Just to note. I filled it in a few hours after the original emails went out (2nd march) and got the dispatch email on the 6th march. On Mar 10, 7:44 pm, TreKing treking...@gmail.com wrote: On Wed, Mar 10, 2010 at 1:20 AM, Arnon arnonse...@gmail.com wrote: I filled the form last friday (March

Re: [android-developers] Re: Client Twitter and Android

2010-03-10 Thread David Toledo
Excuse me. some client that is api jar and can using in the development Thanks 2010/3/10 Mike dg vinb...@gmail.com Seesmic and Twidroid are popular Twitter clients that exist in the market. -Mike dg On Mar 10, 2:39 pm, David Toledo dtole...@gmail.com wrote: Hi All Exist some twitter

Re: [android-developers] Re: Client Twitter and Android

2010-03-10 Thread Mark Murphy
David Toledo wrote: Excuse me. some client that is api jar and can using in the development JTwitter works: http://github.com/commonsguy/cw-andtutorials/tree/master/16-JAR/ -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to

[android-developers] Re: Market Refund Policy

2010-03-10 Thread Thomas Riley
Hello, From what I remember the Android market distro agreement has always said 48 hours. You authorize Google to give the buyer a full refund of the Product price if the buyer requests the refund within 48 hours after purchase. The market allows the user to automatically get a refund within

[android-developers] Re: Client Twitter and Android

2010-03-10 Thread Thomas Riley
+1 on JTwitter. Was playing around with it the other week and it works well. On Mar 10, 7:56 pm, Mark Murphy mmur...@commonsware.com wrote: David Toledo wrote: Excuse me. some client that is api jar and can using in the development JTwitter works:

[android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Luis
Ok, Mark, thanks for your answer. I'd like to know if, in the opposite way, it is possible to build a BACKGROUND application that induces UI events in the system. For example, suppose that I have an application in charge of receiving SMS with commands (or any other type of message) and executing

Re: [android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Mark Murphy
Luis wrote: I'd like to know if, in the opposite way, it is possible to build a BACKGROUND application that induces UI events in the system. For example, suppose that I have an application in charge of receiving SMS with commands (or any other type of message) and executing these commands

Re: [android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Mark Murphy
Mark Murphy wrote: Luis wrote: I'd like to know if, in the opposite way, it is possible to build a BACKGROUND application that induces UI events in the system. For example, suppose that I have an application in charge of receiving SMS with commands (or any other type of message) and executing

[android-developers] Fail to connect to camera service error on Acer Liquid A1

2010-03-10 Thread Streets Of Boston
Hello everyone, I have gotten some stacktraces from Acer Liquid A1 phones that failed to open the camera: java.lang.RuntimeException: Fail to connect to camera service at android.hardware.Camera.native_setup(Native Method) at android.hardware.Camera.init(Camera.java:85)

[android-developers] Re: WebView and Native Browser

2010-03-10 Thread nikhil
have you added all the clients? webviewclient,webchromeclient, enabled javascript etc. On Mar 8, 4:08 pm, Nelson jing...@gmail.com wrote: Dear All, I am working on a WebView browser on Android (like here:http://developer.android.com/resources/tutorials/views/hello-webview) and trying to

[android-developers] Re: Creating first game

2010-03-10 Thread Robert Green
Marlo, I put together something just for guys like you - http://www.rbgrn.net/content/54-getting-started-android-game-development On Mar 9, 3:11 pm, Jiri jiriheitla...@googlemail.com wrote: This might be helpfull. http://www.anddev.org/2d_tutorial-t3120.html Jiri veel plezier. ;) On

[android-developers] Re: Webview textbox and keypad

2010-03-10 Thread nikhil
Worst part is the manual scroll...if I move it up and then touch the keypad ...it rolls back down .. On Mar 8, 2:49 pm, nikhil nik...@gmail.com wrote: Thank you for your reply, Farha. I tried setting the android:windowSoftInputMode=stateVisible|adjustResize value. The view does move upwards

[android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Luis
Ok, Mark. What I was trying to do was, actually, an application similar to monkey, but not so random, something that I could customize. In fact, my goal was to build something more like a Remote Desktop, since I would access other parts of the OS then my own Activity. In Windows Mobile, this

[android-developers] Re: Android Nexus One Update is causing problems!

2010-03-10 Thread Streets Of Boston
I guess the 'this' value of the activity of the second onCreate is different than the 'this' value of the onDestroy after that. It looks like a new activity is created first and then the old one is destroyed. The fact that onDestroy is not called when you hit Back could be OK (when you show the

[android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Robert Green
Does answering questions on this group count? :) On Mar 9, 10:37 am, Streets Of Boston flyingdutc...@gmail.com wrote: This is similar to the seeding program for Android Market Developers. I don't know what the criteria are to get selected for this seeding program (which forums, how many

Re: [android-developers] Re: Activity without ANY screen output possible?

2010-03-10 Thread Mark Murphy
Luis wrote: Ok, Mark. What I was trying to do was, actually, an application similar to monkey, but not so random, something that I could customize. In fact, my goal was to build something more like a Remote Desktop, since I would access other parts of the OS then my own Activity. In Windows

Re: [android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Disconnect
Yes indeed, it seems to. On Wed, Mar 10, 2010 at 3:58 PM, Robert Green rbgrn@gmail.com wrote: Does answering questions on this group count? :) On Mar 9, 10:37 am, Streets Of Boston flyingdutc...@gmail.com wrote: This is similar to the seeding program for Android Market Developers. I

[android-developers] AlarmManager on droids

2010-03-10 Thread nikhil
I am using alarmmanager in my app. It works perfectly for Nexus One and wakes the phone up everytime the alarm fires. But for droid it seems that the phone doesn't wakeup, is there an extra setting on the phone which can prevent the phone from waking up? -- You received this message because you

Re: [android-developers] AlarmManager on droids

2010-03-10 Thread Mark Murphy
nikhil wrote: I am using alarmmanager in my app. It works perfectly for Nexus One and wakes the phone up everytime the alarm fires. But for droid it seems that the phone doesn't wakeup, is there an extra setting on the phone which can prevent the phone from waking up? I can't think of any.

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Rootko
An actual dispatch mail, or just confirmation? Cause that would make you probably first one to get dispatch mail. I did receive confirmation mail also on 6th march, but it had trimmed zero from zip code, so I replied to it. Since that no mails from Google. On Mar 10, 8:47 pm, Thomas Riley

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Thomas Riley
Yes, that is the email I meant. I think we can assume that might be the last contact we get before the devices arrive since it does say Your information will now be sent to our shipping partner for order processing. There would be little point in someone having to manually email everyone again

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Rootko
Yeah, sounds reasonable. Although I kind of expected that they would at least confirm me that zip code has been corrected in my case. Well, I just have to wait then. :) On Mar 10, 10:36 pm, Thomas Riley tomrile...@googlemail.com wrote: Yes, that is the email I meant. I think we can assume that

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Thomas Riley
Yep, I guess they will have waited a couple of days before actually passing on the details to the shipment people. So don't worry! After all, google know we are more likely to reply in a few hours than in a few days since we're all addicted to gmail push! ;) On Mar 10, 9:51 pm, Rootko

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread cannehal
For example I have received email on March 3rd. I've filled the form same day. And I am still awaiting any confirmation/shipment email from Google. This is really frustrating ;) Everything we have to do is to be patient, I think. On Mar 10, 10:54 pm, Thomas Riley tomrile...@googlemail.com wrote:

[android-developers] Re: AlarmManager on droids

2010-03-10 Thread nikhil
Yes Mark, I refered to your wakeful intent article and then implemented the wakelocks, alarmmanagers etc...It works really well for Nexus One and even G1. The problem that our droid customers are facing is that the app works well whenever the phone is on like not in sleep mode (shows status bar

Re: [android-developers] Re: AlarmManager on droids

2010-03-10 Thread Mark Murphy
nikhil wrote: Yes Mark, I refered to your wakeful intent article and then implemented the wakelocks, alarmmanagers etc...It works really well for Nexus One and even G1. The problem that our droid customers are facing is that the app works well whenever the phone is on like not in sleep

Re: [android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Wayne Wenthin
Crap! I'll probably not make this cut either. On Wed, Mar 10, 2010 at 1:06 PM, Disconnect dc.disconn...@gmail.com wrote: Yes indeed, it seems to. On Wed, Mar 10, 2010 at 3:58 PM, Robert Green rbgrn@gmail.com wrote: Does answering questions on this group count? :) On Mar 9, 10:37

Re: [android-developers] Market apps Ranking rules

2010-03-10 Thread Wayne Wenthin
I have the same issue in the casual category. I'm assuming it has to do with the percentage of current installs. Since I'm sitting at 23% of total downloaded. But its growing at least. I was down to 15 about a month ago. On Wed, Mar 10, 2010 at 4:12 AM, croco zeug...@gmail.com wrote: Hi

[android-developers] Re: AlarmManager on droids

2010-03-10 Thread nikhil
Okay Mark, just joined the group. I will contact you there and till then will try to think of different possibilities.. On Mar 10, 4:06 pm, Mark Murphy mmur...@commonsware.com wrote: nikhil wrote: Yes Mark, I refered to your wakeful intent article and then implemented the wakelocks,

[android-developers] Re: Is this the way to prefent ScrollView to overlap/go under the button bar?

2010-03-10 Thread Vladimir
One possible solution is arranging your RelativeLayout like this: RelativeLayout android:id=@+id/ButtonBar android:layout_height=60dip android:layout_alignParentBottom=true ... ... /RelativeLayout ScrollView android:layout_above=@+id/ButtonBar ... ... /ScrollView Notice the layout_above

[android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Robert Green
I feel like I should qualify this being that I've written over 200 posts in response to questions and also over 100 on my own forum at http://www.rbgrn.net/forums not to mention the 40 articles I wrote on Android game development in which I also helped many devs -

Re: [android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Greg Donald
On Wed, Mar 10, 2010 at 4:37 PM, Robert Green rbgrn@gmail.com wrote: I feel like I should qualify this being that I've written over 200 posts in response to questions and also over 100 on my own forum at http://www.rbgrn.net/forums not to mention the 40 articles I wrote on Android game

[android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread nikhil
Whats the cut? On Mar 9, 10:37 am, Streets Of Boston flyingdutc...@gmail.com wrote: This is similar to the seeding program for Android Market Developers. I don't know what the criteria are to get selected for this seeding program (which forums, how many posts, etc.), but many more of us can

[android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Streets Of Boston
I don't know what determines whether you get an Android device or not. I have 600 msgs overall on this board (in the top 10) and about 150 in Android Discuss. On Mar 10, 5:53 pm, nikhil nik...@gmail.com wrote: Whats the cut? On Mar 9, 10:37 am, Streets Of Boston flyingdutc...@gmail.com wrote:

[android-developers] Re: Market Refund Policy

2010-03-10 Thread Mike dg
Thanks Thomas, I remembered a few news sites reporting this as a new change to the policy. And I couldn't find for sure if it actually was a change, or just that people assumed it was. On Mar 10, 2:58 pm, Thomas Riley tomrile...@googlemail.com wrote: Hello, From what I remember the Android

[android-developers] How to reset the price of application

2010-03-10 Thread Rootko
Hi fellow developers. Recently I tried to temporary set the price of one of my apps to Free, just to see the boost in downloads. However now I cannot re-set it, there is simply no radio button to switch to price. Is there some workaround for this? I cannot delete application from developer console

Re: [android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Wayne Wenthin
Ah a typical Google thing then. Based on stats not content. (not saying that to be mean because I've used many of your ideas) On Wed, Mar 10, 2010 at 2:57 PM, Streets Of Boston flyingdutc...@gmail.comwrote: I don't know what determines whether you get an Android device or not. I have 600

[android-developers] Re: HTML content on AppWidget

2010-03-10 Thread String
On Mar 10, 8:16 am, Deepak dpak2...@gmail.com wrote: I need to know if it is possible to display HTML content on an AppWidget. I don't believe that it is possible. The official list of view supported by AppWidgets doesn't include WebView:

Re: [android-developers] How to reset the price of application

2010-03-10 Thread Mark Murphy
Rootko wrote: Hi fellow developers. Recently I tried to temporary set the price of one of my apps to Free, just to see the boost in downloads. However now I cannot re-set it, there is simply no radio button to switch to price. Is there some workaround for this? I cannot delete application

Re: [android-developers] Re: HTML content on AppWidget

2010-03-10 Thread Mark Murphy
String wrote: On Mar 10, 8:16 am, Deepak dpak2...@gmail.com wrote: I need to know if it is possible to display HTML content on an AppWidget. I don't believe that it is possible. The official list of view supported by AppWidgets doesn't include WebView:

[android-developers] Re: How to get text under touch?

2010-03-10 Thread Vladimir
Something along the lines of: onTouchEvent(... MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_UP) { int x = (int) event.getX(); int y = (int) event.getY(); x -= widget.getTotalPaddingLeft(); y -= widget.getTotalPaddingTop(); x +=

[android-developers] Re: How to get text under touch?

2010-03-10 Thread Vladimir
forgot to mention that widget in the code is actually the TextView being touched. IIRC this code comes from ArrowKeyMovementMethod. Don't know about WebView or other components. On Mar 11, 1:16 am, Vladimir vladimir.funti...@gmail.com wrote: Something along the lines of: onTouchEvent(...

[android-developers] Re: Device Seeding Program for Top Contributors to Community Forums

2010-03-10 Thread Robert Green
I only have a meager 340 in this group. :) On Mar 10, 4:57 pm, Streets Of Boston flyingdutc...@gmail.com wrote: I don't know what determines whether you get an Android device or not. I have 600 msgs overall on this board (in the top 10) and about 150 in Android Discuss. On Mar 10, 5:53 pm,

[android-developers] Call processing

2010-03-10 Thread songs
Hi, I've got two apps that process calls great independently, but I'm having trouble getting them to play nice together. I've set the priorities on their intent filters so that they get the broadcast in the right order, but when I process with the first one and set the result, the second process

[android-developers] Re: multiple parameters with rawQuery in sqlite = BUG

2010-03-10 Thread Nathan
I don't know if you've solved this by now, but I see the same behavior with a completely different query that uses five parameters. The only thing in common, probably, is the use of floating point. I've had okay results using one parameter, or passing a fully populated string both in code and in

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Vladimir
Verizon Droid works fine after bypassing the initial activation check (really easy). Obviously can't place calls on GSM network, but everything else is ok. On Mar 7, 4:13 am, anton.slut...@gmail.com anton.slut...@gmail.com wrote: Do Verizon phones even load without being hooked up to Verizon?  

[android-developers] Re: Using MediaPlayer - multiple sound files

2010-03-10 Thread Neilz
Anyone? I'm sure this must be a common problem... -- 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

Re: [android-developers] Re: multiple parameters with rawQuery in sqlite = BUG

2010-03-10 Thread Mark Murphy
Nathan wrote: I don't know if you've solved this by now, but I see the same behavior with a completely different query that uses five parameters. The only thing in common, probably, is the use of floating point. I've had okay results using one parameter, or passing a fully populated string

Re: [android-developers] Re: Using MediaPlayer - multiple sound files

2010-03-10 Thread Mark Murphy
Neilz wrote: Anyone? I'm sure this must be a common problem... Actually, this is the first I've heard of a file too big for SoundPool. How have you determined that file size is your issue? With respect to MediaPlayer, it's possible that having a whole bunch of MediaPlayer objects will be OK,

Re: [android-developers] XML validation error when updating Android SDK

2010-03-10 Thread Xavier Ducrohet
Looks like you're running an older version of the tools (rev 3 or older). Only rev 4 is able to properly adapt to schema changes in the repository. Please download the rev 5 of the tools directly from http://developer.android.com/sdk/index.html Xav On Wed, Mar 10, 2010 at 3:57 AM, aisakov

[android-developers] Re: registerCallback leaks memory?! Help?

2010-03-10 Thread James Wang
I am not much sure gclog.py is only available for linux. Maybe you can try installing python on withows and playing with it. However, linux is recommended. -- 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] Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Sam
Hi, I wanted to know if it is possible to Detect in an Activitiy's OnResume if the Activity is resuming because the devices Back button was hit or not? Sammy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: multiple parameters with rawQuery in sqlite = BUG

2010-03-10 Thread Nathan
On Mar 10, 3:56 pm, Mark Murphy mmur...@commonsware.com wrote: Create a project that demonstrates the problem, open an issue onhttp://b.android.com, and shoot me the issue number when you've done that. OK. First, though, is there a way to capture what SQL is actually being sent to the

[android-developers] Re: Can static library is created by android 2.0 work at android 2.1?

2010-03-10 Thread mah
The SDK provides you with what you need for building a 2.1 emulator... probably easier (and more reliable) to simply try it out. On Mar 8, 9:35 pm, bluestar bluestar8...@gmail.com wrote: I create one static library(alogrithm.a) by using android 2.0 Now I want to use this library to work at

[android-developers] Re: Can static library is created by android 2.0 work at android 2.1?

2010-03-10 Thread Robert Green
Bluestar, Any shared object you generate using the NDK for a previous version of Android should be forward compatible. IE: If you compile some code that runs fine against 2.0, it should (for the most part) also work against 2.1. On Mar 8, 8:35 pm, bluestar bluestar8...@gmail.com wrote: I

[android-developers] Re: Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Robert Green
I kind of do something like this. I set a flag to false onResume and then set it true if the back button is hit. onPause, if that flag is true, I know it's because my user is backing out and I can respond in a certain way (knowing that we'll be going back to a previous activity). The previous

[android-developers] How to launch YouTube with specified keywords?

2010-03-10 Thread David
Dear All, I want launch the YouTube with specified video searching list at startup(e.g I want YouTube shows the video list all related with the key word Susan and U.S in the first page.) But The YouTube application is not open source in Éclair, would you please tell

[android-developers] Re: How do I simulate the Home key programmatically?

2010-03-10 Thread Robert Green
If you want to exit, just use finish(). On Mar 10, 10:23 am, Wides erich.weid...@gmail.com wrote: Hi, I have a requirement to implement an Exit button in my Android application. I don't really care about killing the activity stack, I just want to have the same effect as pressing the Home

Re: [android-developers] Re: multiple parameters with rawQuery in sqlite = BUG

2010-03-10 Thread Mark Murphy
Nathan wrote: On Mar 10, 3:56 pm, Mark Murphy mmur...@commonsware.com wrote: Create a project that demonstrates the problem, open an issue onhttp://b.android.com, and shoot me the issue number when you've done that. OK. First, though, is there a way to capture what SQL is actually being

[android-developers] how to wrap content in optionsmenu?

2010-03-10 Thread Stefan
Hi, my problem is, that i have long strings in my optionsmenu. so my question is, whether is it possible to define, that i only want to show one item per line: LNG STRING 1 LONG STRING2

[android-developers] currentTimeMillis() doesnt match on two concurrent emulators

2010-03-10 Thread Samsyn
so... I am testing my multiplayer game by running several instances of the emulator (which is, sadly, extremely slow and dis-satisfying). I depend on a little trick using currentTimeMillis() to keep a synchronized clock between the players (but NOT the absolute value of currentTimeMillis() since

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-10 Thread Maps.Huge.Info (Maps API Guru)
From what I understand, both units (N1 and Droid) will come with a 30 day free account with either T-Mobile or Verizon. That will allow activation without any funny business. Of course, I may be wrong. -John Coryat -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Widget setOnClickPendingIntent not working

2010-03-10 Thread Kasra Rahjerdi
I've made some progress. If I set my application up to do widget updating in onRecieve everything works, similar code in the onUpdate function does not. -- 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] Re: currentTimeMillis() doesnt match on two concurrent emulators

2010-03-10 Thread Samsyn
at the risk of answering my own question (with the to-be-expected accuracy level associated with that), it appears that if I * shut down eclipse * open two CMD windows * launch the emulators from command line that I get much better peformance (5x better?), less 'time-slice- theft' (top window

[android-developers] Re: Query Loop!?

2010-03-10 Thread Ben
James, Upon looking at that, I saw the following : Execute a single SQL statement that is not a query. For example, CREATE TABLE, DELETE, INSERT, etc. As my whole intent is to query, put data into ContentValues, and then update the fields in the existing tables I don't think that will work.

[android-developers] Re: currentTimeMillis() doesnt match on two concurrent emulators

2010-03-10 Thread Robert Green
Samsyn, For multiplayer synchronization, you absolutely can not count on the current time of either device. Here's one way to handle it: Both host and client use System.nanoTime() / 100; That gives you a fairly accurate counter to use. Host sends snapshots with their current time. Client

<    1   2   3   >