[android-developers] ContentResolver Query Joining with SQL Lite Table

2013-02-03 Thread fahad mullaji
Hi Guys, I am getting all songs from SDCARD using below code, Cursor objCursor; final String[] projection = {*}; objCursor = objContext.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, projection, null, null,

[android-developers] Re: ContentResolver Query Joining with SQL Lite Table

2013-02-03 Thread fahad mullaji
Checked this link... looks like this is not possible http://stackoverflow.com/questions/2495657/am-i-able-to-run-sql-functions-on-a-contentresolver-columns-query Thanks Fahad Mullaji On Sun, Feb 3, 2013 at 2:12 PM, fahad mullaji fahadmull...@gmail.comwrote: Hi Guys, I am getting all songs

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-02-03 Thread H
Not sure what you mean by not part of the public api - these are the exact values of the BOOKMARKS_URI on this the Browser object documented here: http://developer.android.com/reference/android/provider/Browser.html On 2.x devices it returns a uri for browser but from 3.x onwards, that was

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-02-03 Thread Kristopher Micinski
Ah, I meant simply that you shouldn't be hardcoding a string constant as the value for the bookmarks store as it can change (as you've just seen) You are mistaken, things in the com.android.* package are *not* part of the public API. Generally, things in the public API are in android.*, Kris

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-02-03 Thread Kristopher Micinski
I'm not saying it won't work --- in my experience it hasn't --- but since it's in that package it's off limits. Reading bookmarks from the default browser seems bad anyway: what if the user installs another one. (I do have some background with this, attempting to develop an app that takes your

[android-developers] Google spreadsheet workaround

2013-02-03 Thread leftcont...@gmail.com
http://support.google.com/drive/bin/answer.py?hl=enanswer=2761244 Are there any known workarounds to having charts on my google drive spreadsheet display on android? -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] (x,y,z) co-ordinates from accelerometer and gyroscope

2013-02-03 Thread Pranav
Hi All, I am trying to get the spatial co-ordinates of the device, i.e. (x,y,z) co-ordinates. I get the acceleration values in the x, y and z direction, but how do I convert these values to get the co-ordinates? Plus, if the acceleration was from rotation alone, how would gyro be used in this

[android-developers] Re: ContentResolver Query Joining with SQL Lite Table

2013-02-03 Thread lbendlin
you could load the results from the cursor into a temporary SQLite table and then do the inner join. But that's not really an elegant solution. On Sunday, February 3, 2013 3:42:29 AM UTC-5, fahad mullaji wrote: Hi Guys, I am getting all songs from SDCARD using below code, Cursor objCursor;

[android-developers] Re: Unpublishing an APK

2013-02-03 Thread Jake Colman
T == TreKing treking...@gmail.com writes: T On Sat, Feb 2, 2013 at 8:08 PM, Jake Colman jake.col...@gmail.com wrote: I uploaded a new APK and discovered a bug a stupid oversight (I forgot to turn off my debug flag). T You no longer have to manually change the debug flag.

[android-developers] null Intent in onStartCommand

2013-02-03 Thread Jake Colman
According to the docsou can get a null intent if the service is restarted by Android. Simple question: do I just ignore the intent since I can't do anything with it anyway? Am I supposed to know what to do with it? If not, why does Android bother doing it? -- Jake Colman -- Android Tinkerer

[android-developers] Re: Unpublishing an APK

2013-02-03 Thread Nobu Games
Anyway, there was no risk of exposing the faulty version to the public since it took you just 5 minutes to upload a corrected version. It takes Google Play several hours until changes are committed. On Sunday, February 3, 2013 12:44:17 PM UTC-6, Jake Colman wrote: T == TreKing

Re: [android-developers] null Intent in onStartCommand

2013-02-03 Thread TreKing
On Sun, Feb 3, 2013 at 12:48 PM, Jake Colman jake.col...@gmail.com wrote: Simple question: do I just ignore the intent since I can't do anything with it anyway? Am I supposed to know what to do with it? If not, why does Android bother doing it? That depends on your use case. Android

[android-developers] Setting LED on a Notification

2013-02-03 Thread Jake Colman
This should be simple but I can't get it to work. My application is triggering a notification. I want that notification to make s aound, vibrate, and turn on the LED. It all works but the LED. My code does something similar to the following: Notification X = new Notification(...); X |=

Re: [android-developers] Unpublishing an APK

2013-02-03 Thread John Coryat
It see the unpublish option that I think that would remove the entire app from the store. Correct. You don't want to do that. I've used the unpublish option when I've been in a similar situation. It doesn't seem to be harmful and seems also to happen very fast. Getting it back on

[android-developers] Re: What is the permission SET_WALLPAPER_HINTS used for?

2013-02-03 Thread Kosh
I was trying to find out the same thing and stumbled upon this. http://developer.android.com/reference/android/app/WallpaperManager.html For use only by the current home application, to specify the size of wallpaper it would like to use. This allows such applications to have a virtual

[android-developers] Re: Alpha ordering ListPreference values to suit current locale

2013-02-03 Thread William Ferguson
OK, I guess I mustn't have expressed myself clearly. I can't see how a preference is going to help here. I can provide an explicit ordering in each an every resource locale that suits that locale. But I'm wondering whether there is a programmatic (or other) way to ensure that the values

Re: [android-developers] Google spreadsheet workaround

2013-02-03 Thread Fred Niggle
yes, install dropbox or other sync-able remote storage software on both desktop and android, then open the spreadsheet with a suitable android app. Your mileage will vary depending on spreadsheet suit used to create the spreadsheet, and how much formating is used. In some cases it is viable to

Re: [android-developers] Google spreadsheet workaround

2013-02-03 Thread Fred Niggle
On 4 February 2013 00:15, Fred Niggle fred.nig...@googlemail.com wrote: yes, install dropbox or other sync-able remote storage software on both desktop and android, then open the spreadsheet with a suitable android app. Your mileage will vary depending on spreadsheet suit used to create the

Re: [android-developers] Unpublishing an APK

2013-02-03 Thread dashman
The OPs problem seems to be solved and maybe answered. So...mini-hijack. what version control system is recommended - i.e. works with eclipse -- -- 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: Unpublishing an APK

2013-02-03 Thread Jake Colman
d == dashman erjdri...@gmail.com writes: d The OPs problem seems to be solved and maybe answered. d So...mini-hijack. d what version control system is recommended - i.e. works with eclipse I'm a CVS kind of guy. Been using it for years and it has great Eclipse integration. More

Re: [android-developers] Unpublishing an APK

2013-02-03 Thread TreKing
On Sun, Feb 3, 2013 at 3:14 PM, John Coryat cor...@gmail.com wrote: It see the unpublish option that I think that would remove the entire app from the store. Correct. You don't want to do that. I've used the unpublish option when I've been in a similar situation. It doesn't seem to be

Re: [android-developers] Unpublishing an APK

2013-02-03 Thread TreKing
On Sun, Feb 3, 2013 at 7:54 PM, dashman erjdri...@gmail.com wrote: what version control system is recommended - i.e. works with eclipse I don't think there's anything that's recommended - use what you like and works for you. I use SubVersion and I played with plugins that integrated with

[android-developers] Re: Setting LED on a Notification

2013-02-03 Thread gjs
Hi, X.lefOffMS = 0; should be X.ledOffMS = 0; Maybe look at other examples, eg http://androidblogger.blogspot.com.au/2009/09/tutorial-how-to-use-led-with-android.html Regards On Monday, February 4, 2013 7:01:23 AM UTC+11, Jake Colman wrote: This should be simple but I can't get it to

[android-developers] SIP Demo Connection using LinPhone

2013-02-03 Thread Seshu
Hi All, I downloaded sip demo example using http://www.linphone.org/eng/download/ for android devices. I am not understanding how to run the code with out any errors.. Can u plz guide me how to do??? -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2013-02-03 Thread Simon Frederic
Hi Everyone, I am facing a similar issue with an app I posted last year for testing. Event Animals. the app was downloaded 10 times (for testing only) I received a similar email. No explanation whatsoever for the suspension; and unfortunately no response whatsoever to email. Post suspension I

[android-developers] how to get log of long tag.

2013-02-03 Thread Jianming Wan
I want to get some log with long tags (log.tag.org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager). 1. setprop has length limitation, so setprop log.tag.org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager VERBOSE doesn't work; 2. this tag name is provided by httpClient, so I