[android-developers] Re: Nexus 7 drawable

2012-08-17 Thread limtc
I test through every drawables and found that Nexus 7 chose large-hdpi not tvdpi or mdpi. And even if the image is of correct size (1280x800), Nexus 7 still scales the background and causes issue. My solution is a stupid one - I scale the background to 1440x900 and it works (actually 1450x905

[android-developers] Android Application Load Time

2012-08-17 Thread Giang Hoang
Hi, I would like to measure Android application load time across different platforms. For application that I have source, that could be done by inserting log print outs with time stamp at the beginning of onCreate() and the end of onResume(), or through instrumentation. However, I don't know

[android-developers] Request to Separate Permissions for Read Phone State and Read Phone Identity

2012-08-17 Thread CapnShiner
I do not understand why permissions are still combined for phone state and identity. I have no problem letting an app see that my phone is ringing or that I'm on a call. I understand that many apps need this permission so that they do not prevent normal operation of the device and its ability

[android-developers] Disable/Delay the Lock Screen Programmatically

2012-08-17 Thread Daniel M
I’d like to disable/delay the lock screen programmatically. In looking into this, KeyguardManager is depreciated/doesn't work consistently, FLAG_DISMISS_KEYGUARD is not an option because I want to do this in the background, I don't want to use WakeLock for battery reasons and Device

[android-developers] Access Jack Plug data

2012-08-17 Thread Tho82
Hi @ll, is it possible to access the jack plug data with the Android API? Best regards, Tho -- 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

[android-developers] android emulator can't run

2012-08-17 Thread emerald
:i'm a new android developer, using eclipse. the problem is that every time i tries launch avd devices, it writes PANIC: Could not open AVD config file: C:\Users\$^%$#\android\avd\mmm.avd/config.ini i tried to relocate the avd files, but it didn't work. what should i do? -- You received this

[android-developers] write android app with vb.net

2012-08-17 Thread محمد مصطفى
hi awant ask about write android app with vb.net how thank you -- 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

[android-developers] How do I keep corporate app (not in any store) updated?

2012-08-17 Thread Jon Helms
I have done some searching and haven't found anything, so I must be searching wrong, but since I didn't find anything I'm at a loss of what to do other than post here and ask. I am developing a corporate application that once released our employees will be able to install from our portal.

[android-developers] title bar upon app launch

2012-08-17 Thread jumpmanjay
hello, i notice some apps have been developed such as when you launch it, it goes straight to a splash screen of their choosing, or directly into the app...but some apps (and mine) display the app title with a blank screen before jumping into the main activity. how can i avoid this? i would

[android-developers] Re: Detect scrolling stop and TableLayout updating

2012-08-17 Thread lbendlin
What is your rationale for not using an adapter? On Thursday, August 16, 2012 6:26:08 AM UTC-4, Иван Дунский wrote: I have TableLayout in the ScrollView. I add items there in with the method: private void appendRows(int start , int end) { final TableLayout table =

[android-developers] WHY can an app still not be changed from free to paid???

2012-08-17 Thread stellan andersson
Why is it that developers still can't choose to change a paid app to free and then back to paid again? This is an absolutely insane stance by Google. I'm sure it's not a technical issue as Googlers are probably smart enough to figure that out. You (Google) are effectively denying developers an

[android-developers] Re: How to convert .swf to .apk ?

2012-08-17 Thread Nur Fadiah Yusof
http://www.youtube.com/watch?v=H7eoxjUncHM only Flash Authoring version that has native built-in Android App packaging abilities. -- 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] Wifi Enabled Device properties

2012-08-17 Thread Meena Rengarajan
I have noticed that specific WiFi Enabled devices properties can get only on having versions 4.0 or later even above 2.3 .Also I have seen the code to access WiFi Direct API. But I have doubt that on some blogs people have written that some 2.2 version android devices also support this. So same

[android-developers] Looper

2012-08-17 Thread Dilli
Hi all, I am getting error like below. E Looper : Error modifying epoll events for fd 163, errno=2 error = 2 indicates no entry for FD why it happened ?? what is the exact reason and thanks in advance. Regards, Dilli. -- You received this message because you are subscribed to the Google

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

2012-08-17 Thread Pent
You won't find any answers to Google Play account issues on the android-* forums. What a nice supportive post. 'I have a problem' 'You won't find any answers here' Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-17 Thread gjs
Hi, Do what you did for a desktop app - have your app periodically check some server for updates. regards On Friday, August 17, 2012 6:56:30 AM UTC+10, Jon Helms wrote: I have done some searching and haven't found anything, so I must be searching wrong, but since I didn't find anything I'm

Re: [android-developers]

2012-08-17 Thread Rahul Kaushik
*SAVE ARRAY* public boolean saveArray(String[] array, String arrayName, Context mContext) { SharedPreferences prefs = mContext.getSharedPreferences(preferencename, 0); SharedPreferences.Editor editor = prefs.edit(); editor.putInt(arrayName +_size, array.length); for(int

Re: [android-developers] Re: Problem in larger xml parsing with SOAP web service

2012-08-17 Thread Rajan Thakrar
Ohh! I am so sorry krishana, i have tried your code and it is working perfectly, but now i got the output that is neither XML nor JSON (output is available in Dataset). so what can i do ? How can i parse the response data. On Fri, Aug 17, 2012 at 11:14 AM, Rajan Thakrar

Re: [android-developers] WHY can an app still not be changed from free to paid???

2012-08-17 Thread TreKing
On Thu, Aug 16, 2012 at 7:40 PM, stellan andersson stellan...@gmail.comwrote: Why is it that developers still can't choose to change a paid app to free and then back to paid again? Questions regarding the Google Play store should go here.

Re: [android-developers] title bar upon app launch

2012-08-17 Thread TreKing
On Thu, Aug 16, 2012 at 10:47 AM, jumpmanjay jasonyokoy...@gmail.comwrote: how can i avoid this? i would like to jump directly into my app. Optimize the onCreate method of your app. - TreKing

Re: [android-developers] Event in android Calendar

2012-08-17 Thread TreKing
On Thu, Aug 16, 2012 at 11:21 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Please suggest. I suggest you review the Calendar API in the documentation. - TreKing

Re: [android-developers] Google Docs - DocsService - Building a sample app - VerifyError? What does that mean?

2012-08-17 Thread TreKing
On Thu, Aug 16, 2012 at 7:34 PM, NickL nicklongi...@gmail.com wrote: VerifyError? What does that mean? Try punching errors you don't understand into your favorite search engine. - TreKing

Re: [android-developers] ArrayList in TableLayout IndexOutOfBoundsException

2012-08-17 Thread Harri Smått
On Aug 17, 2012, at 10:58 AM, Иван Дунский i.duns...@gmail.com wrote: for (int i=start; iend; i++) Instead of doing this I'd say you should also add boundary checks e.g; for (int i=start; iend iforPrint.size(); i++) Or alternatively recalculate start and end so that they do not exceed

Re: [android-developers] how to make updates to my app at store and alert users about new updates?

2012-08-17 Thread TreKing
On Thu, Aug 16, 2012 at 2:18 AM, Hady Abd alkhalik ibnserin2...@gmail.comwrote: how can i add any updates to my published application at google play and inform mobiles which installed before my app about new updates? To make an update, read the documentation on the matter. To notify your

Re: [android-developers] How to make an Android Spinner with initial text “Select One”

2012-08-17 Thread TreKing
On Mon, Aug 13, 2012 at 11:00 AM, Heitor Lima heitorlima...@gmail.comwrote: With this code, initially the item One is displayed. I could just add a new item Select One to the items, but then Select One would also be displayed in the dropdown list as first item, which is not what I want.

Re: [android-developers] Why does prefetcher service keeps running

2012-08-17 Thread TreKing
On Wed, Aug 15, 2012 at 1:29 AM, Saud ims...@gmail.com wrote: I dont want to prefetch anything and the maps prefetcher service keeps coming back. It happens since I updated the maps app. Why the hell there is no option in the maps to stop prefetching the data. This has nothing to do with

[android-developers] Re: android emulator can't run

2012-08-17 Thread cham herbias
http://code.google.com/p/android/issues/detail?id=19084 archie herbias http://www.earnmailer.com/link/6ab51cbaff12bf5f http://www.earnmailer.com/alert/confirm/6ab51cbaff12bf5f http://www.earnmailer.com/ On Thursday, August 16, 2012 1:11:49 PM UTC-7, emerald wrote: :i'm a new android

Re: [android-developers] Re: Problem in larger xml parsing with SOAP web service

2012-08-17 Thread Rajan Thakrar
I am getting this kind of response * - * anyType{NewDataSet=anyType{Table=anyType{AdSpaceID=423; AdspaceName=Hoarding at football, (Amul); Address=football,(Amul)-Ahmedabad;

[android-developers] Re: android emulator can't run

2012-08-17 Thread cham herbias
http://drupal.org/node/1286926 archie herbias http://www.earnmailer.com/link/6ab51cbaff12bf5f http://www.earnmailer.com/alert/confirm/6ab51cbaff12bf5f http://www.earnmailer.com/ On Thursday, August 16, 2012 1:11:49 PM UTC-7, emerald wrote: :i'm a new android developer, using eclipse.

[android-developers] Re: page curl

2012-08-17 Thread Subramanya Somayaji
Android Google Play Books has page curl https://play.google.com/store/apps/details?id=com.google.android.apps.bookshl=en we have no idea what they are using canvas bit map or any other view -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Creating a dialog with progressbar

2012-08-17 Thread |-NK-|
Hi, I am developing an application in which on one screen I need to call some funcations that does some calculations and sends results at particular interval. In between I need to show a progress bar that keeps on running untill I get the final calculated result. Once I get the result I am

[android-developers] .apk file charset (áéő)

2012-08-17 Thread Dániel Laczkó
Hi! I tried upload the apk file in google play, after the upload the app title characters was bad (é and ő - ??), but on the phone is good. I use eclipse, my project character code is utf-8, but after the export my apk file character code in ansi. Can somebody tell me something about this

[android-developers] How can I get the sound from the mic?

2012-08-17 Thread 임하현
I wanna make a amplifier when I speak at mic the sound comes from speaker So I wanna get sound from Mic and output from speaker -- 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] My First App

2012-08-17 Thread Graham Irwin
I'm trying to create my first app and I don't seem to have the Android Support Library. I tried to install this using Android SDK Manager and I get the messages: Downloading Android Support Library, revision 10 File not found: C:\Program Files (x86)\Android\android-sdk\temp\support_r10.zip

Re: [android-developers] Re: Problem in larger xml parsing with SOAP web service

2012-08-17 Thread Krishna Mahadik
Hi Rajan, First tell me your scenario. I am not sure what your are trying to do. r u trying to read xml coming from web service or reading xml on server ?? On Fri, Aug 17, 2012 at 11:14 AM, Rajan Thakrar r.d.thak...@gmail.comwrote: hi Krishna, so i am going on wrong track, is it so ??

Re: [android-developers] .apk file charset (áéő)

2012-08-17 Thread Kostya Vasilyev
Rename the apk to something Market would be happy with. 17.08.2012 13:15 пользователь Dániel Laczkó danny.lac...@gmail.com написал: Hi! I tried upload the apk file in google play, after the upload the app title characters was bad (é and ő - ??), but on the phone is good. I use eclipse, my

[android-developers] How to create and retrieve databasse

2012-08-17 Thread Sadhna Upadhyay
Hi everyone, can some one tell me how to create and retrieve data from database ,actully there are so many example on sites but those are not clear can any ione help me database -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] My First App

2012-08-17 Thread Edel Custodio Frias
You can have run the sdk as administrador. Saludos. Edel Custodio Frías. El 17/08/2012 04:14, Graham Irwin gandalf...@gmail.com escribió: I'm trying to create my first app and I don't seem to have the Android Support Library. I tried to install this using Android SDK Manager and I get the

[android-developers] Delivery report cellid

2012-08-17 Thread suresh
Hi Friends Is there any possibility to get the cell id of recipient person by sending sms or by reading sms delivery report in android. i need to track the person location by using his mobile number. please if anybody have idea suggest me. -- You received this message because you are

[android-developers] How the contact chosen by the user to place in a textview

2012-08-17 Thread Sergey Mitugov
Begining Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.ContactsContract.Contacts.CONTENT_URI); startActivityForResult(pickIntent, PICK_RESULT); -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] My First App

2012-08-17 Thread Graham Irwin
Grazie Edel All the other downloads worked fine without running as administrator. Ciao Graham On Friday, August 17, 2012 1:06:28 PM UTC+2, Edel Custodio Frias wrote: You can have run the sdk as administrador. Saludos. Edel Custodio Frías. El 17/08/2012 04:14, Graham Irwin

Re: [android-developers] My First App

2012-08-17 Thread bob
Maybe check if the file is there? It does say File not found. On Friday, August 17, 2012 7:57:22 AM UTC-5, Graham Irwin wrote: Grazie Edel All the other downloads worked fine without running as administrator. Ciao Graham On Friday, August 17, 2012 1:06:28 PM UTC+2, Edel Custodio Frias

[android-developers] Re: Creating a dialog with progressbar

2012-08-17 Thread bob
Maybe like this: ProgressDialog dialog = ProgressDialog.show(this, Your Title, Put your message here, true); On Friday, August 17, 2012 4:02:51 AM UTC-5, |-NK-| wrote: Hi, I am developing an application in which on one screen I need to call some funcations that does some calculations and

[android-developers] Re: How can I get the sound from the mic?

2012-08-17 Thread bob
Maybe use android.media.AudioRecord? On Friday, August 17, 2012 3:35:45 AM UTC-5, 임하현 wrote: I wanna make a amplifier when I speak at mic the sound comes from speaker So I wanna get sound from Mic and output from speaker -- You received this message because you are subscribed to the

[android-developers] Re: How to create and retrieve databasse

2012-08-17 Thread bob
SQLiteDatabase db = openOrCreateDatabase(MyDatabaseName, MODE_PRIVATE, null); db.execSQL(CREATE TABLE MyTableName (_id INTEGER PRIMARY KEY AUTOINCREMENT, YourColumnName TEXT);); // Since SQL doesn't allow the insertion of a completely empty row, the // second parameter of db.insert

[android-developers] CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread Máté Gulyás
I have a ListFragment, where I add a CursorAdapter to my ListView, and I want to be able to click several rows, to use contextual action bar. I use SherlockActionbar, and it works fine, when I use a simpleArrayAdapter. But when I switch to CursorAdapter, it breaks. I cannot select multiple

Re: [android-developers] Re: Load SWF in webview

2012-08-17 Thread Budd
For some reason, i tried again after 2 days. It works. I didn't change anything on the code. Sorry about that On Thursday, August 16, 2012 6:17:23 PM UTC-4, Budd wrote: Yes, my phone is 4.0.4 galaxy s3. Should be no problem loading the flash. It works on my phone browser. On Aug 16, 2012

Re: [android-developers] Request to Separate Permissions for Read Phone State and Read Phone Identity

2012-08-17 Thread Kristopher Micinski
This has been discussed at length, and addressed by a large number of groups have addressed this in various ways. You can read the history of android-security-discuss, this group is neither the appropriate group to discuss feature requests or security on Android. (Except to the extent that it

[android-developers] Re: CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread bob
What about a SimpleCursorAdapter? On Friday, August 17, 2012 9:14:09 AM UTC-5, Máté Gulyás wrote: I have a ListFragment, where I add a CursorAdapter to my ListView, and I want to be able to click several rows, to use contextual action bar. I use SherlockActionbar, and it works fine, when

Re: [android-developers] Re: CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread Máté Gulyás
That breaks it too. On Fri, Aug 17, 2012 at 5:25 PM, bob b...@coolfone.comze.com wrote: What about a SimpleCursorAdapter? On Friday, August 17, 2012 9:14:09 AM UTC-5, Máté Gulyás wrote: I have a ListFragment, where I add a CursorAdapter to my ListView, and I want to be able to click

[android-developers] Re: Request to Separate Permissions for Read Phone State and Read Phone Identity

2012-08-17 Thread Johan Appelgren
For a lot of apps the life cycle events for activities are enough, no need bother with whether the user is in a call or not. And isn't the audio focus mechanism enough for most media/music apps unless you need to support API level 8? If you worry about IMEI, what about Wifi MAC? And what

Re: [android-developers] Re: Request to Separate Permissions for Read Phone State and Read Phone Identity

2012-08-17 Thread Kristopher Micinski
On Fri, Aug 17, 2012 at 11:37 AM, Johan Appelgren johan.appelg...@gmail.com wrote: For a lot of apps the life cycle events for activities are enough, no need bother with whether the user is in a call or not. And isn't the audio focus mechanism enough for most media/music apps unless you need to

Re: [android-developers] Re: CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread Kostya Vasilyev
Note sure what's going on, but this loop: boolean hasCheckedElement = true; for (int i = 0; i checked.size() !hasCheckedElement; i++) { hasCheckedElement = checked.valueAt(i); } will not execute ever, because !hasCheckedElement is always false, since hasCheckedElement =

[android-developers] Re: Wifi Device properties !

2012-08-17 Thread bob
// To use this WifiManager method, AndroidManifest.xml must have the following permission: // uses-permission android:name=android.permission.ACCESS_WIFI_STATE/ WifiManager wifiManager = (WifiManager) getSystemService(Context. WIFI_SERVICE); WifiInfo wifiInfo =

Re: [android-developers] Re: CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread Máté Gulyás
Yeah, that true remained there from debugging. It skips the loop, but it' not a problem, and the action mode starts fine. It also closes and reopens, no problem there. My real problem is that every time I select an item, the selection from the previous one is cleard. Also, it does work with

Re: [android-developers] Re: CursorAdapter breaks CHOICE_MODE_MULTIPLE option

2012-08-17 Thread Máté Gulyás
Furthermore, I checked it with a very simple example. ListActivity, with one list. It's OK with ArrayAdapter, but it does not work with SimpleCursorAdapter. The activity contains only the onCreate method, and the corresponding imports. Someone could verify this? WORKING EXAMPLE: @Override

[android-developers] Connection reset by peer?

2012-08-17 Thread bob
What does it mean when you try to form a Bluetooth connection on Android and you get this message? java.io.IOException: *Connection reset by peer* -- 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: My First App

2012-08-17 Thread Divya
Hi, I had the smae problem. I could install the support library when I ran SDK Manager as an administrator by right click on SDK manager.exe 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] Re: How do I keep corporate app (not in any store) updated?

2012-08-17 Thread gt8887b
The most straightforward way is to periodically poll the server to see if a new update is available. Then just point the browser to the location of your apk file Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(http://your.site.com/yourAppFile.apk;));

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

2012-08-17 Thread Ian Ni-Lewis
On Thu, Aug 16, 2012 at 1:09 PM, Kostya Vasilyev kmans...@gmail.com wrote: 2012/8/16 Ian Ni-Lewis ile...@google.com Who did you contact at Google? I don't personally know anyone at Google, and not sure if Google employees with G+ accounts would appreciate a random person trying to contact

[android-developers] Handling server timeout

2012-08-17 Thread Wolfgang
Hey guys, My app relies greatly on updated data from my server. The app is up and running great. However, I realize servers can go down and I want my app to be able to handle this. I simply want to display a message saying the server is currently down and then gracefully close the app. Can

Re: [android-developers] Handling server timeout

2012-08-17 Thread TreKing
On Fri, Aug 17, 2012 at 1:17 PM, Wolfgang wolfgangemm...@yahoo.com wrote: I realize servers can go down and I want my app to be able to handle this. I simply want to display a message saying the server is currently down and then gracefully close the app. Can anyone point me to a good resource

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

2012-08-17 Thread Kostya Vasilyev
Ian, I purposefully raised this issue on a public forum - my intent was to first find out if I'm doing something wrong, or if other developers are also seeing this issue, which would mean it's on Google's side. Pent's response was a million times more valuable to me than a canned response from

[android-developers] Re: Connection reset by peer?

2012-08-17 Thread Lew
Typically for any connection-based IO that means that the remote end closed the connection. -- Lew On Friday, August 17, 2012 9:49:41 AM UTC-7, bob wrote: What does it mean when you try to form a Bluetooth connection on Android and you get this message? java.io.IOException: *Connection

[android-developers] Re: I Missed my phone at Home - good apps

2012-08-17 Thread Lew
bob wrote: Instead of I Missed my Phone at Home maybe call it I Left my Phone at Home? It's better grammar. RKJ (Android developer) wrote: Let me know your comments Neither one is spelled correctly, with respect to case. Other than that both are equally correct from a grammatical

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

2012-08-17 Thread Latimerius
On Fri, Aug 17, 2012 at 8:02 PM, Ian Ni-Lewis ile...@google.com wrote: You might also want to keep in mind that this is not a monitored list in the sense that it's someone's job to read and respond to posts. The engineers who read this list are doing so out of the goodness of their hearts, in

[android-developers] Define whether a device supports video format

2012-08-17 Thread Dmitriy F
I need to define if a device can play a video file. So far, I've registered [an error handler][1] which receives a number of errors which might be tolerable - I mean even though they occur player still feels fine and keeps on working. However, I need somehow to distinguish between errors that

[android-developers] Re: Handling server timeout

2012-08-17 Thread Dmitriy F
Try something like: try{ URL page = new URL(address); HttpURLConnection connection = (HttpURLConnection) page.openConnection(); connection.setConnectTimeout(2000); connection.setReadTimeout(2000); connection.connect(); }catch (SocketTimeoutException e1) { } catch (ConnectTimeoutException e2) {

[android-developers] Re: Data transfer between two Wifi Devices

2012-08-17 Thread bob
// To use this WifiManager method, AndroidManifest.xml must have the following permission: // uses-permission android:name=android.permission.ACCESS_WIFI_STATE/ WifiManager wifiManager = (WifiManager) getSystemService(Context. WIFI_SERVICE); ListScanResult results =

[android-developers] broadcast an intent from onDestroy of a service

2012-08-17 Thread Ubuntu guy
Hi, I'm trying to broadcast an intent using context.sendBroadcast() from a onDestroy() of a service which is handled by another service waiting in its onDestroy(). However, the onRecieve() of the intent receiver is never triggered. Is this supported at all? -- You received this message

[android-developers] List of views to change in layout

2012-08-17 Thread Budd
Hi, I got a question about how to change to view dymaically. I have a empty FrameLayout in my activity. I want to do is every 10 seconds 1) Remove all the view in the layout 2) create new videoview or webview (depend on what kind of content in the array) 3) Add it to the layout Any suggestion

Re: [android-developers] broadcast an intent from onDestroy of a service

2012-08-17 Thread Mark Murphy
On Fri, Aug 17, 2012 at 4:42 PM, Ubuntu guy sam_...@yahoo.co.in wrote: I'm trying to broadcast an intent using context.sendBroadcast() from a onDestroy() of a service which is handled by another service waiting in its onDestroy(). However, the onRecieve() of the intent receiver is never

[android-developers] Re: broadcast an intent from onDestroy of a service

2012-08-17 Thread Ubuntu guy
well, i meant waiting on a coundownlatch which is released by the broadcast receiver which receives the intent sent from the other service's onDestroy. Besides, this happens within 2 seconds. On Aug 17, 1:50 pm, Mark Murphy mmur...@commonsware.com wrote: On Fri, Aug 17, 2012 at 4:42 PM, Ubuntu

[android-developers] 3rd party Bluetooth

2012-08-17 Thread bob
Okay, so Android has a lot of built-in Bluetooth functions. Unfortunately, they seem kind of buggy. Anyone know if it's possible to use a 3rd party Bluetooth JAR that maybe has better routines? -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: broadcast an intent from onDestroy of a service

2012-08-17 Thread Mark Murphy
On Fri, Aug 17, 2012 at 4:55 PM, Ubuntu guy sam_...@yahoo.co.in wrote: well, i meant waiting on a coundownlatch which is released by the broadcast receiver which receives the intent sent from the other service's onDestroy. Besides, this happens within 2 seconds. If I understand you

[android-developers] Re: broadcast an intent from onDestroy of a service

2012-08-17 Thread Ubuntu guy
Sorry, i should have given process info. Both of my services run in independent applications and they are in different process to reduce point of failures (like abnormal process termination, low memory kills etc). This use case is when Service A (process A) is destroyed, it stops Service B

Re: [android-developers] Re: broadcast an intent from onDestroy of a service

2012-08-17 Thread Mark Murphy
On Fri, Aug 17, 2012 at 5:24 PM, Ubuntu guy sam_...@yahoo.co.in wrote: Sorry, i should have given process info. Both of my services run in independent applications and they are in different process to reduce point of failures (like abnormal process termination, low memory kills etc). This

[android-developers] Showing a portion of a web page with a webView

2012-08-17 Thread Dan Uff
Hi all, I have an unique situation I have a webView showing a web page on a web site with information on it. The top of the web site has a usual heading, and under that has the information that I wish to show to the user. I would like to (somehow) not show the web site's heading, but

Re: [android-developers] My developer account has been canceled., Anybody knows the reason???

2012-08-17 Thread julious raj
Hi the_edge123, Thanks for your reply., Currently i am not getting any mails from google., some of my friends also faced this kind of issue., Now i have only two ways 1. try to register a new account 2. Move to some other development (IPhone, Web) Once again thanks for your responsive reply.