[android-developers] play audio on tab click event

2012-10-26 Thread Sadhna Upadhyay
Hi everyone , i am making an app in which 10 tab and i want to play audio when i click on tab ,and there are different-different for different tab and one more thing that i want to swipe functionality on framelayout of tab. how to do? if any one have any idea please share with me. -- You

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread alex kyo
Thanks for your reply*, *Kris My (3rd party)app was built to install apps on STOCK android via google play, What I did was link to Play store by an url like https://play.google.com/store/apps/details?id=com.fusepowered.google.jawsrevenge , and when user click INSTALL button the installation

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread alex kyo
thanks for your reply, TreKing That's a question for a lawyer if I could afford one. On Friday, October 26, 2012 2:51:03 AM UTC+9, TreKing wrote: On Thu, Oct 25, 2012 at 5:30 AM, alex kyo kyokan...@gmail.comjavascript: wrote: Is it LEGAL to implement APK's silent installation for

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread Mark Murphy
On Fri, Oct 26, 2012 at 2:30 AM, alex kyo kyokanxuj...@gmail.com wrote: I am wondering if there is any way to install the app directly silently On a stock android without pushing a button. Fortunately, no, for obvious security reasons. the rival company, of course, they won't tell us how

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread Kristopher Micinski
On Fri, Oct 26, 2012 at 2:41 AM, Mark Murphy mmur...@commonsware.com wrote: On Fri, Oct 26, 2012 at 2:30 AM, alex kyo kyokanxuj...@gmail.com wrote: I am wondering if there is any way to install the app directly silently On a stock android without pushing a button. Fortunately, no, for

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread Mark Murphy
On Fri, Oct 26, 2012 at 2:45 AM, Kristopher Micinski krismicin...@gmail.com wrote: Or their company is actually TMobile... Oh, true. A device manufacturer can do this stuff without a problem. I was assuming that this was an SDK app, since this is a list for developing SDK apps, but that may not

[android-developers] Re: Display all installed media player

2012-10-26 Thread djhacktor
What i get from your question you want to to play video when user click on particular link if that so then i think this will work Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(http://www.youtube.com/watch?v=780WhaR3RyQ;)); startActivity(i); On Friday, 26

[android-developers] Re: gcm starter. problem with google's demo gcm project.

2012-10-26 Thread Andrew Mackenzie
Hi gillib. When I used the C2DM (previous to GCM) example project for a university class it had a number of bugs and needed editing - mainly on the Android side. The generated code for the RPCs between Android device and AppEngine server code were not being generated properly. There were a

[android-developers] Re: android SQLite

2012-10-26 Thread djhacktor
This is some thing what m also working on to sync db best thing is use content provider using syncAdapter in android see one of my post http://ericmiles.wordpress.com/2010/09/22/connecting-the-dots-with-android-syncadapter/ database file size is android.database.sqlite.SQLiteDatabase has

[android-developers] Can we detect swipe or long press by starting a baground Service in Android

2012-10-26 Thread nitin gupta
Can we detect swipe or long press by starting a Service in Android so if service is running i can detect swipe or long press anywhere . if yes plz sort out . -- 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: Reading the headers in server after HTTP Post

2012-10-26 Thread Archana
Hi, If I use Sockets to post the JSON(instead of HTTP Post), how will I retrieve the JSON and status code in the server? Also with HTTP Post, I want to retreive both(the status code and JSON). Can you please suggest an example? Thanks! On Wednesday, October 24, 2012 3:29:16 PM UTC+3, skink

[android-developers] Re: Reading the headers in server after HTTP Post

2012-10-26 Thread skink
Archana wrote: Hi, If I use Sockets to post the JSON(instead of HTTP Post), how will I retrieve the JSON and status code in the server? Also with HTTP Post, I want to retreive both(the status code and JSON). Can you please suggest an example? Thanks! what status code? a status code is

[android-developers] Re: android SQLite

2012-10-26 Thread Tim
Dear Nageswararao, Could I suggest you have a look at the MobiForms Advanced Edition mobile development suite for Android? The MAE includes the MobiForms Developer and the MobiForms Sync Server. The MobiForms Developer is especially designed for creating database oriented mobile business

Re: [android-developers] http post NetworkOnMainThreadException

2012-10-26 Thread Amey Bapat
http://lmgtfy.com/?q=NetworkOnMainThreadException+in+android On Thu, Oct 25, 2012 at 4:40 PM, aueddonline commsult...@gmail.com wrote: Below I have some of my MainActivity class which starts by making a http post request to the web server running on my development laptop. The webpage

[android-developers] Don't recieve Wi-Fi connection change intent when device screen is blank

2012-10-26 Thread draf...@gmail.com
I currently listen for changes in the Wi-Fi in my Android application and for the most part it works OK, however when the user has there device is idle/sleep mode, as in when the screen is blank. If they walk into a Wi-Fi area and automatically connect I don't get the intent until the user has

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread alex kyo
Thanks, Mark One thing I can definitely confirm is that they are not device manufacturer. Suppose there is a google account(*ga*) which contains several apps. My guess is that they might register a stock device with the *ga* by AccountManager and then call the sync api (I don't know exactly

[android-developers] how to create voice chat program using sip in android?

2012-10-26 Thread Tom
Hi, if anybody knows to create voice chat program using sip in android.pleas share with me 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

Re: [android-developers] http post NetworkOnMainThreadException

2012-10-26 Thread Ralph Bergmann | the4thFloor.eu
http://developer.android.com/training/basics/network-ops/connecting.html#AsyncTask Am 26.10.12 11:38, schrieb Amey Bapat: On Thu, Oct 25, 2012 at 4:40 PM, aueddonline commsult...@gmail.com laptop. The webpage outputs some JSON also shown below; However I am getting a

[android-developers] Test if screenlock is enabled

2012-10-26 Thread AMetnik
I need to check if this app has security (screenlocks), enabled. I have found out how to check for pattern_locks like this boolean b = android.provider.Settings.Secure.getInt( getContentResolver(),Settings.Secure.LOCK_PATTERN_ENABLED, 0)==1; But the other two evades

Re: [android-developers] Abridged summary of android-developers@googlegroups.com - 13 Messages in 7 Topics

2012-10-26 Thread Anyr
On Fri, Oct 26, 2012 at 3:07 AM, android-developers@googlegroups.comwrote: Today's Topic Summary Group: http://groups.google.com/group/android-developers/topics - Is it legal to implement APK's silent installation for commercial use? #13a9be5993e34324_group_thread_0 [4 Updates]

[android-developers] Re: Reading the headers in server after HTTP Post

2012-10-26 Thread Archana
Hi, So should I set the status code using Apache Core like HttpResponse response = new BasicHttpResponse(HttpVersion.HTTP_1_1, 200, OK); response.setEntity(new StringEntity(Got it)); conn.sendResponseHeader(response); conn.sendResponseEntity(response); in

[android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Silvio Marano
Analogous problem... Another strange thing? *With another package name everything works. Seems that for some reason the LVL server suddenly decided to not respond to specific package names.* * * I have tried to contact Google with no success.* * Il giorno domenica 20 maggio 2012 22:02:33 UTC+2,

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Kostya Vasilyev
2012/10/26 Silvio Marano maranosil...@gmail.com: Analogous problem... Another strange thing? With another package name everything works. Seems that for some reason the LVL server suddenly decided to not respond to specific package names. I have tried to contact Google with no success. That's

[android-developers] Re: Reading the headers in server after HTTP Post

2012-10-26 Thread skink
Archana wrote: Hi, So should I set the status code using Apache Core like HttpResponse response = new BasicHttpResponse(HttpVersion.HTTP_1_1, 200, OK); response.setEntity(new StringEntity(Got it)); conn.sendResponseHeader(response);

[android-developers] Re: Reading the headers in server after HTTP Post

2012-10-26 Thread Archana
Yes it seems to work! I will get real devices next week. Later, I will test on those. On Tuesday, October 23, 2012 9:44:57 PM UTC+3, Archana wrote: Hi, I did a HTTP Post from client. In server, I am able to see like, POST /HTTP/ 1.1 Content Length: 41 Content-type: application/json

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Silvio Marano
There aren't others specific address to contact google engineers? Since nobody of the people active in the forum seems have access to the google license server management, is impossible to fix this issue without Google intervention. I cannot re-publish the app with another package name saying

Re: [android-developers] Android Jelly Bean Container

2012-10-26 Thread Marina Cuello
Cute and yummy. I can't get not even white label jelly beans anywhere here in Argentina anymore, but a Googler brought one odd those droids to an event and I was able to taste a couple :-) Sorry for the off-topic! Marina On Oct 22, 2012 6:27 AM, Christos Amarandos

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Kostya Vasilyev
The official answer - use the official support channel: https://support.google.com/googleplay/android-developer/bin/answer.py?answer=136601 This also helps, sometimes: http://support.google.com/googleplay/android-developer/bin/static.py?hl=enpage=known_issues.cs -- K 2012/10/26 Silvio Marano

[android-developers] Few hunches on requestLayout() and forceLayout() (Their differences)

2012-10-26 Thread Satya Komatineni
I have been doing some research for custom components. The long thread of the research is at http://satyakomatineni.com/item/4148 Reading the internet I have got bits and pieces about requestLayout() and invalidate(). I think I kind of know what they are. However the difference between

Re: [android-developers] Android phone stolen

2012-10-26 Thread bob
I tried the app, but it does not let me create a new Prey account. On Thursday, October 25, 2012 8:24:32 PM UTC-5, Joel Wirāmu Pauling wrote: http://preyproject.com First app you should install IMHO. On 26 October 2012 14:06, Michael Leung michae...@gmail.com javascript: wrote: I

Re: [android-developers] Android phone stolen

2012-10-26 Thread Nikolay Elenkov
On Wed, Oct 24, 2012 at 7:57 PM, Jorge Iván Andrés Contreras Pereira jo...@contreras.com.co wrote: Hi, Someone stole one of my Android devices, I wonder if there is any possibility of a blockade by Android (Google Play for example) to prevent the thief can activate it and use it? This

[android-developers] Widget's modification

2012-10-26 Thread Des
Hi all! I've a great question and I'm wondering you'll be able to solve it. I've put in my Background the energy Saver widget, the one with the wifi, bluetooth, gps, etc. Is there a way to change one of these buttons? For example, what should I do to change the Syncronize button with another

[android-developers] Re: http post NetworkOnMainThreadException

2012-10-26 Thread djhacktor
After gingerbread android sdk doest allow having networking work on main thread UI one On Thursday, 25 October 2012 16:40:23 UTC+5:30, aueddonline wrote: Below I have some of my MainActivity class which starts by making a http post request to the web server running on my development laptop.

[android-developers] Issue building project which uses library project

2012-10-26 Thread Ab
I found many postings concerning this error, but none of the solutions worked for me. I have project A, B, and C. Projects A and B are marked as library projects, project B imports project A as a library, and project C imports project B. When running project C from eclipse, I get the below

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
This is the right answer. If you fill out the appropriate support form (e.g. http://support.google.com/googleplay/android-developer/bin/request.py?contact_type=publishing) and don't get an answer within about 3 business days, then you can ask someone on this forum to escalate. Make sure you have

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Kostya Vasilyev
2012/10/26 Ian Ni-Lewis ile...@google.com: This is the right answer. If you fill out the appropriate support form (e.g. http://support.google.com/googleplay/android-developer/bin/request.py?contact_type=publishing) and don't get an answer within about 3 business days, then you can ask someone

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Silvio Marano
I have already used this form three days ago... Their answer? Thank you for your email. Please note that we are unable to assist with application development and testing questions. If you're looking for information regarding development issues, please visit our Android Developer site I have

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
I'm not a Play Support engineer, nor am I going to make promises to help--but I can tell you this: if you want to complain about the support you're getting from our help form, you have to post the ticket number. Otherwise there's no way for anyone to follow up on your complaint. On Fri, Oct 26,

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Silvio Marano
The ticket number? Is the number #1143185470 in the email subject?! Il giorno venerdì 26 ottobre 2012 22:05:26 UTC+2, Ian Ni-Lewis ha scritto: I'm not a Play Support engineer, nor am I going to make promises to help--but I can tell you this: if you want to complain about the support you're

[android-developers] Photoshop not appearing

2012-10-26 Thread bob
Anyone else have trouble with Photoshop not appearing in the list of External programs when you try to edit an Android drawable from Eclipse? https://lh6.googleusercontent.com/-JPO9sSOhHQI/UIrvEm5JtZI/ADs/s-P3zsJSydQ/s1600/Screen+Shot+2012-10-26+at+3.09.13+PM.png -- You received

RE: [android-developers] Photoshop not appearing

2012-10-26 Thread Tommy
I have a problem with Gimp not showing up but if I go to browse and open gimp.exe it works fine. From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of bob Sent: Friday, October 26, 2012 4:15 PM To: android-developers@googlegroups.com Subject:

Re: [android-developers] Photoshop not appearing

2012-10-26 Thread bob
Try moving *Gimp* into the *Applications* directory. On Friday, October 26, 2012 3:34:54 PM UTC-5, Tommy wrote: I have a problem with Gimp not showing up but if I go to browse and open gimp.exe it works fine. *From:* android-d...@googlegroups.com javascript: [mailto:

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
That sounds about right. Ian On Fri, Oct 26, 2012 at 1:13 PM, Silvio Marano maranosil...@gmail.comwrote: The ticket number? Is the number #1143185470 in the email subject?! Il giorno venerdì 26 ottobre 2012 22:05:26 UTC+2, Ian Ni-Lewis ha scritto: I'm not a Play Support engineer, nor am I

[android-developers] GCM Stats in the developer console

2012-10-26 Thread John Coryat
I just noticed a new box in the developer's console titled: Enable Google Cloud Messaging Stats This new feature has three boxes for GCM API keys. I went to https://code.google.com/apis/console/ API Access pane and used the Key for server apps (with IP locking) but it was rejected. When I

Re: [android-developers] Can we detect swipe or long press by starting a baground Service in Android

2012-10-26 Thread TreKing
On Fri, Oct 26, 2012 at 3:00 AM, nitin gupta nitin0...@gmail.com wrote: Can we detect swipe or long press by starting a Service in Android No, fortunately. - TreKing

[android-developers] Re: Test if screenlock is enabled

2012-10-26 Thread Kevin TeslaCoil Software
Aside from Device Admin, there is no API or official way for an app to retrieve for this information. Also, of the top of my head, your query for the pattern won't work on Jellybean (or maybe only works if they configured the pattern before upgrading to Jellybean?). -Kevin On Friday, October

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-26 Thread Kevin TeslaCoil Software
I would guess that they simulate a user clicking INSTALL from the web based Play Store. I believe this would be technically doable if they either had the user login or had the users Google password. Then the Play Store takes care of pushing the app to the device and installing it in the