[android-developers] Browser callback

2011-06-26 Thread guru sagar
Hi all , Is there any possibility to get call back from the in built browser when we start from our activity Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(http://;)); startActivit(intent,0); Thanks in advance Thanks, Guru -- You received this message

Re: [android-developers] Re: Can't show AlertDialog

2011-06-26 Thread TreKing
On Sat, Jun 25, 2011 at 7:56 PM, andrewg_oz andrew.greg...@gmail.comwrote: It seems, though, that calling show() pauses the activity, which dismisses the dialog! Whoops. So, that comment was wrong, but is it still trying to say something important? Should I be dismissing the dialog

Re: [android-developers] Comments and Contacting Users

2011-06-26 Thread TreKing
On Sat, Jun 25, 2011 at 7:04 PM, Halsafar shinhalsa...@gmail.com wrote: How on earth does a developer contact a user who makes a comment about their app? My current strategy: post response to a blog which my app(s) then checks and notifies the user when a new post is found. When user Foo Bar

Re: [android-developers] Browser callback

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 1:00 AM, guru sagar gurusagar...@gmail.com wrote: Is there any possibility to get call back from the in built browser when we start from our activity No. And please do not assume that using the intent you posted will automatically always start the in built browser.

[android-developers] HI

2011-06-26 Thread guru sagar
Hi , Is there any possibilty to get callback from in built browser in android when page is completly loaded . Thanks, Gurusagar -- 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] Browser callback

2011-06-26 Thread guru sagar
Hi Treking, public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //finish(); Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(http://;)); startActivityForResult(intent, 0); } @Override public void

Re: [android-developers] Re: Comments and Contacting Users

2011-06-26 Thread Kostya Vasilyev
Yeah, all too true. I have contact info in the application as well, and most (not all, but most) emails I get are Sent from my HTC and Sent from my Verizon phone. So these users don't understand something as basic as how to use their phone's back key. -- Kostya 26.06.2011 5:21, Halsafar

[android-developers] Re: Browser callback

2011-06-26 Thread Zsolt Vasvari
If you use startActivityForResult() you will AWLAYS get a call to onActivityResult() when the activity you called finished. But it's NOT the other intent calling you back. Please familirize yourself with the activity life cycle documentation. PS: It is NOT ok to Chat request me or prviate

[android-developers] Re: Browser callback

2011-06-26 Thread Zsolt Vasvari
Didn't I specifically post that it's NOT ok to Chat request me? Do you have a reading comprehension problem? On Jun 26, 3:16 pm, Zsolt Vasvari zvasv...@gmail.com wrote: If you use startActivityForResult() you will AWLAYS get a call to onActivityResult() when the activity you called finished.  

[android-developers] Re: Comments and Contacting Users

2011-06-26 Thread Krischik Martin
On 26 Jun., 02:19, Daniel Drummond dmdrummo...@gmail.com wrote: Your developer email address is on your app page in the market.  This Of course you could build into your app an option for the user to register their use with the developer.  Or set up a Contact Developer menu item. That is the

[android-developers] Re: Droid X 2 issue

2011-06-26 Thread JAlexoid (Aleksandr Panzin)
There is the wikipedia page for listing of major specs for Android devices. http://en.wikipedia.org/wiki/Comparison_of_Android_devices On Jun 26, 5:10 am, limtc thyech...@gmail.com wrote: Hi, I got reported from Droid X 2 users regarding the resource issues on new resolution... can anyone

[android-developers] Permission denied on device but works on Emulator :(

2011-06-26 Thread Abhilash Cherukat
Hi I am getting an error when trying to use my device to test it :( In emulator it works fine. Am using Android2.2 2011-06-26 13:11:38 - ShetkarGeo] Installing ShetkarGeo.apk... [2011-06-26 13:11:41 - ShetkarGeo] Success! [2011-06-26 13:11:41 - ShetkarGeo] Starting activity

[android-developers] Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread droid-stricken
Hi All, I am doing the following, but seems not to be working - mWebView = (WebView) findViewById(R.id.webView1); mWebView.loadUrl(file:///android_asset/Help File/helpfile.html); I tried the following - -- 1. mWebView.loadUrl(file:///android_asset/Help%20File/ helpfile.html); // replaced

[android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread JAlexoid (Aleksandr Panzin)
If the response is not Text/HTML/JSON/XML/(other text based) then use a byte array. On Jun 26, 4:12 am, a a harvey.a...@gmail.com wrote: HI, all:    I want to get the content to sting Variable from uri var HttpResponse. Is there any litimation for the long of sting variable ? may be the

[android-developers] Re: Honeycomb: My video app saved mp4 movie into DCIM/Camera, but in the Gallery is nothing to play

2011-06-26 Thread JAlexoid (Aleksandr Panzin)
You might want to work with this thing: http://developer.android.com/reference/android/provider/MediaStore.html Also do a search on MediaStore in this group. On Jun 25, 9:14 pm, Devomat mo...@2aba.de wrote: I've written an Video-App, after recording the mp4 file is in the standart DCIM/Camera

[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread Zsolt Vasvari
IIRC, this is a know bug. Please search on http://b.android.com On Jun 26, 3:46 pm, droid-stricken harik...@gmail.com wrote: Hi All, I am doing the following, but seems not to be working - mWebView = (WebView) findViewById(R.id.webView1); mWebView.loadUrl(file:///android_asset/Help

Re: [android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread NaveenShrivastva
On Sun, Jun 26, 2011 at 1:25 PM, Zsolt Vasvari zvasv...@gmail.com wrote: IIRC, this is a know bug. Please search on http://b.android.com On Jun 26, 3:46 pm, droid-stricken harik...@gmail.com wrote: Hi All, I am doing the following, but seems not to be working - mWebView =

[android-developers] ViewAnimator - animation is finished?

2011-06-26 Thread Ralph Bergmann
Hi, I use a ViewAnimator and want to know when the showNext() / showPrevious() animation is finished. How can I do this? Is there a listener for that? The LayoutAnimationListener doesn't help me, it doesn't get any events. Ralph -- You received this message because you are subscribed to

Re: [android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread NaveenShrivastva
Please use String reversePalindrome = new String(server response); On Sun, Jun 26, 2011 at 1:19 PM, JAlexoid (Aleksandr Panzin) jalex...@gmail.com wrote: If the response is not Text/HTML/JSON/XML/(other text based) then use a byte array. On Jun 26, 4:12 am, a a harvey.a...@gmail.com

Re: [android-developers] Permission denied on device but works on Emulator :(

2011-06-26 Thread NaveenShrivastva
Please confirm me what type of works you doing in project are you doing Map Activity related work.i think there is nay security signing tool problem. Please confirm what work doing in project. On Sun, Jun 26, 2011 at 1:14 PM, Abhilash Cherukat abhi.cheru...@gmail.comwrote: Hi I am getting

[android-developers] Re: Permission denied on device but works on Emulator :(

2011-06-26 Thread Abhilash Cherukat
Thanx for the quick reply i am trying to do a program which send Text,Image,Vedio, Audio along with lat lon values to a server Audio i am amble to record, but not vedio. I thought it was becoz i am trying a emulator so i switched to the phone. I am using Samsung Galaxy lite. -- You received

[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread droid-stricken
Vasvari is right. This is a known bug: Issue 17327: I tried the same code on a android phone running 2.3.4 (and using api level 10) and i could not see any issues with the white spaces in the path. Thanks all. On Jun 26, 3:07 am, NaveenShrivastva kumarnaveen.si...@gmail.com wrote: On Sun, Jun

[android-developers] Re: What are your thoughts on this service - activity communication pattern?

2011-06-26 Thread Zsombor
Thanks, it seems that I'm overthinking the problem a bit, I'll just skip the postbox stuff. On Jun 25, 9:52 pm, Kostya Vasilyev kmans...@gmail.com wrote: If the service process is killed, it won't have its onDestroy called, and won't have a chance to update shared preferences indicating it's

Re: [android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread a a
I tested at morning, it will cause java.lang.StringIndexOutOfBoundsException if the http response is too long, so what i can get all from http response? 2011/6/26 NaveenShrivastva kumarnaveen.si...@gmail.com: Please use String reversePalindrome = new String(server response); On Sun,

Re: [android-developers] HI

2011-06-26 Thread Mark Murphy
No, sorry. If you need that level of control, you need to embed a WebView widget in your application. On Sun, Jun 26, 2011 at 2:57 AM, guru sagar gurusagar...@gmail.com wrote: Hi ,                       Is there any possibilty to get callback from in built browser in android when page is

[android-developers] Re: Which OS is more preferable for Android apps, middleware,source/OEM level development.

2011-06-26 Thread murali
windows will be good On Jun 23, 9:04 pm, Nainala Shrinivas srito...@gmail.com wrote: Hi, Could you any one give some clarity for Android development on which OS is more preferable? I am planning to buy new PC for android development for all the levels, like Apps, Middle level source

Re: [android-developers] ViewAnimator - animation is finished?

2011-06-26 Thread Mark Murphy
Add an AnimationListener to your animations, and do something in onAnimationEnd(). On Sun, Jun 26, 2011 at 4:12 AM, Ralph Bergmann ra...@dasralph.de wrote: Hi, I use a ViewAnimator and want to know when the showNext() / showPrevious() animation is finished. How can I do this? Is there a

Re: [android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread a a
following is my code, like HttpGet httpReq = new HttpGet(uri); HttpParams httpParameters = new BasicHttpParams(); // Set the timeout in milliseconds until a connection is established. int timeoutConnection = 3000;

[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread droid-stricken
Will i have the same issue if i use raw folder instead of assets? Thanks. On Jun 26, 3:42 am, droid-stricken harik...@gmail.com wrote: Vasvari is right. This is a known bug: Issue 17327: I tried the same code on a android phone running 2.3.4 (and using api level 10) and i could not see any

Re: [android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread Mark Murphy
A StringIndexOutOfBoundsException should be giving you more information, such as: Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: -1 On Sun, Jun 26, 2011 at 6:01 AM, a a harvey.a...@gmail.com wrote: following is my code, like            HttpGet httpReq = new

Re: [android-developers] Re: What longest leng for String in andorid?

2011-06-26 Thread Kostya Vasilyev
... and is a programming error rather than a Java/Android string length limitation. Look at the stack trace in logcat, to see where you're getting the error. -- Kostya 26.06.2011 14:05, Mark Murphy пишет: A StringIndexOutOfBoundsException should be giving you more information, such as:

[android-developers] how to finish all activities running in foreground or background(has been paused)?

2011-06-26 Thread Hitendrasinh Gohil
Hi, I need to do something like i.e when user clicks on quit button all activities should be finish and homescreen should come. so how can i do that,can anyone help me? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] how to finish all activities running in foreground or background(has been paused)?

2011-06-26 Thread Mark Murphy
On Sun, Jun 26, 2011 at 6:24 AM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: I need to do something like i.e when user clicks on quit button all activities should be finish and homescreen should come. The user can press the HOME button for that. Android applications do not need a

Re: [android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread Mark Murphy
On Sun, Jun 26, 2011 at 6:05 AM, droid-stricken harik...@gmail.com wrote: Will i have the same issue if i use raw folder instead of assets? You should have a compile error if you attempt to put a file with a space in its name in a resource directory. Simply rename the file to remove the space.

Re: [android-developers] Re: NFC Secure Element

2011-06-26 Thread Michael Roland
Hallo Markus, You are sure its not possible to access it [SWP-UICC] from an android application? In Madlmayers Blog he wrote, its possible because of the additional AT Commands in RIL since 2.3.2. Where did you find this information in Gerald's blog? I only found When Android switched from

[android-developers] Finding out how the Intent was started

2011-06-26 Thread Neilz
Hi all. I assume there is a way of finding out how your Activity was started, for example: Intent i = new Intent(ActivtyA.this, ActivityB.class); ...when B starts, I want to find out the activity that started it, which in this case would be an instance of ActivityA. How can I get this

Re: [android-developers] Finding out how the Intent was started

2011-06-26 Thread Mark Murphy
On Sun, Jun 26, 2011 at 7:06 AM, Neilz neilhorn...@gmail.com wrote: I assume there is a way of finding out how your Activity was started, for example: Intent i = new Intent(ActivtyA.this, ActivityB.class); ...when B starts, I want to find out the activity that started it, which in this case

Re: [android-developers] Re: NFC Secure Element

2011-06-26 Thread Michael Roland
Hallo Markus, But by loading the Key, occurs an error: /send FF82201A06 = FF 82 20 1A 06 FF FF FF FF FF FF .. (407461 nsec) = 69 86 i. Status: Command not allowed (no current EF) Actually this response

Re: [android-developers] Re: NFC Secure Element

2011-06-26 Thread Michael Roland
Hallo, Opening a connection with it - using doOpenSecureElementConnection, like you can with the Smart-MX - will most definitely not work for a UICC SE though. As the NativeNfcSecureElement will only open a connection with the Smart-MX SE - completely ignoring a UICC even if it is detected.

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ
/ExpList ( 336): onChildClick [Begin] I/ActivityManager( 61): Starting: Intent { cmp=aexp.explist/.NoteEdit } from p id 336 D/AndroidRuntime( 336): Shutting down VM W/dalvikvm( 336): threadid=1: thread exiting with uncaught exception (group=0x4 0015560) E/AndroidRuntime( 336): FATAL

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread Kostya Vasilyev
That's the root cause below. Since you're using a SimpleExpandableListAdapter, make sure to understand the data structures it requires. Also consider subclassing BaseExpandableListAdapter and implementing the necessary methods. This might be easier than building those special data

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ
ok, do you think it would br better to use a base expandable list adapter? my errors are in the arraylist which used in simple adapter? I an new to android and sorry for my english! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread Kostya Vasilyev
Since you're a beginner, hard to say... The error is that your data structures used to create a simple adapter are not what the adapter expects. If you can re-read the documentation and make it right, then you're done. If not, it might make sense to not use the simple adapter and work through

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ
thanks a lot i completely undersatnd that you are telling to me. I 'll try to fix my code . Would you see how I create my data structure? -- 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] Show a hint why a ListPreference has no items

2011-06-26 Thread Stefan at WPF
Hello, in my android application I have a ListPreference that is empty under certain circumstances. In that case, I'd like to show a hint (a short text) in the ListPreference explaining why it is empty. What's the best way to do that? I would prefer to place the hint like an item meaning I don't

Re: [android-developers] Show a hint why a ListPreference has no items

2011-06-26 Thread Mark Murphy
I don't believe that is possible. Consider simply disabling the preference when it cannot be used, and perhaps updating the description to indicate why it cannot be used. On Sun, Jun 26, 2011 at 9:30 AM, Stefan at WPF stefan.at@googlemail.com wrote: Hello, in my android application I have a

[android-developers] Re: Layout in a not default package

2011-06-26 Thread Alfonso
Have you seen this? http://code.google.com/p/apv/ It looks exactly what you´re looking for. By the way, any clue about me question? On 25 jun, 19:46, krishna kumar send2mess...@gmail.com wrote: any body please help me pdf reader how to implements ...any concepts  if have ...then

Re: [android-developers] Re: HttpURLConnection gives UnknownHostException

2011-06-26 Thread a a
2011/1/13 Brill Pappin br...@pappin.ca: It's a problem with your Wifi or carrier. The error is a standard one and not specific to phones or Android. It means that when your network stack got the domain name and tried to convert it to a network address, it was unable to reach a DNS server you

[android-developers] search suggestions

2011-06-26 Thread Ralph Bergmann
Hi, I followed the description in this article to implement the search system, everything works fine. http://developer.android.com/guide/topics/search/index.html But I dont understand the the user selects a suggestion behavior. The user enter a search string in the textfield and the system

[android-developers] BroadcastReceiver when connect or disconnects to network

2011-06-26 Thread Boozel
Hi, I'm trying to set up a BroadcastReceiver to tell when a phone finds or looses signal. I am using the intent android.net.conn.CONNECTIVITY_CHANGE but this seems to be triggered when the phone looses or gains an internet (data) connection. Is there any way to do the same for the actual phone

Re: [android-developers] BroadcastReceiver when connect or disconnects to network

2011-06-26 Thread Mark Murphy
You can try ACTION_PHONE_STATE_CHANGED on TelephonyManager, though I don't know if it supports the range of events that PhoneStateListener does. On Sun, Jun 26, 2011 at 11:35 AM, Boozel boozelcl...@gmail.com wrote: Hi, I'm trying to set up a BroadcastReceiver to tell when a phone finds or

[android-developers] Re: Honeycomb: My video app saved mp4 movie into DCIM/Camera, but in the Gallery is nothing to play

2011-06-26 Thread Devomat
Thank you, that's it :) -- 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+unsubscr...@googlegroups.com

Re: [android-developers] BroadcastReceiver when connect or disconnects to network

2011-06-26 Thread Boozel
Hi thanks for the reply. looking at http://developer.android.com/reference/android/telephony/TelephonyManager.html#ACTION_PHONE_STATE_CHANGED if ACTION_PHONE_STATE_CHANGED was used as the filter, what could be used to tell if the phone had lost or gained signal? -- You received this message

Re: [android-developers] BroadcastReceiver when connect or disconnects to network

2011-06-26 Thread Mark Murphy
http://developer.android.com/reference/android/telephony/TelephonyManager.html#EXTRA_STATE Again, I don't know what states that all holds. On Sun, Jun 26, 2011 at 12:04 PM, Boozel boozelcl...@gmail.com wrote: Hi thanks for the reply. looking at

[android-developers] Android app website w/ release history?

2011-06-26 Thread DulcetTone
I can recall using a (non-Google) website that listed Android apps like so many do, but this one had an event stream for each app showing changes such as version updates, price changes, permission changes, etc. I've forgotten which site that was. Can someone point me to one (or more) such sites?

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread Kostya Vasilyev
26.06.2011 17:21, ?? ??? ?: thanks a lot i completely undersatnd that you are telling to me. I 'll try to fix my code . Would you see how I create my data structure? Don't think that would help much (reading is one thing, debugging is quite another). I recommend you read

[android-developers] Re: Bluetooth Serial Port Question

2011-06-26 Thread Indicator Veritatis
Si- How can the device not support pairing? It is required by the Bluetooth spec. On Jun 24, 12:35 am, Si simonstewartke...@googlemail.com wrote: Hi, Can someone point me in the right direction please?! I am trying to connect to an industrial product using Android over Bluetooth. The

Re: [android-developers] search suggestions

2011-06-26 Thread Ralph Bergmann
Am 26.06.11 17:26, schrieb Ralph Bergmann: What goes wrong? I found it, I forgot android:searchSuggestIntentAction=android.intent.action.VIEW android:searchSuggestIntentData=content://xxx -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ
thank you so much! I 'll work on it! -- 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] Preferences activity not working in live app

2011-06-26 Thread Raghav Sood
Hi all, I have an app, Quaker, in which the preference activity force closes. On the emulator the activity opens but when you try to use any of the options it force closes. On my device the app force closes when you select preferences from the options menu. The device log is:

Re: [android-developers] Browser callback

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 2:03 AM, guru sagar gurusagar...@gmail.com wrote: am getting call back here ., and its opening in inbuilt browser only. can you please clarify this Then the inbuilt browser is the only option that you currently happen to have on whatever device you're testing on. If

Re: [android-developers] Android app website w/ release history?

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 11:17 AM, DulcetTone dulcett...@gmail.com wrote: Can someone point me to one (or more) such sites? AppBrain does this. - TreKing

Re: [android-developers] Preferences activity not working in live app

2011-06-26 Thread Mark Murphy
First, you don't use startActivityForResult() with a PreferenceActivity, usually. Use registerOnSharedPreferenceChangeListener(), or simply reload your preferences in onResume(). Second, it appears as though one of your android:entryValues is not a string-array, or you are manually setting one of

Re: [android-developers] Preferences activity not working in live app

2011-06-26 Thread TreKing
This is what you look for ...Cause by ... in your LogCat. On Sun, Jun 26, 2011 at 1:18 PM, Raghav Sood raghavs...@gmail.com wrote: Caused by: java.lang.ClassCastException: java.lang.Integer at android.app.ContextImpl$SharedPreferencesImpl.getString(ContextImpl.java:2754) This tells you you

Re: [android-developers] Preferences activity not working in live app

2011-06-26 Thread Raghav Sood
Hi, Your answers helped fix the problem but the solution is a little weird, at least according to me. Apparently the app force closes when arrays.xml is: ?xml version=1.0 encoding=utf-8? resources string-array name=update_freq_options itemEvery Minute/item item5 minutes/item

Re: [android-developers] Comments and Contacting Users

2011-06-26 Thread Marcin Orlowski
On Jun 26, 2011 2:20 AM, Daniel Drummond dmdrummo...@gmail.com wrote: probably to ensure the integrity of the reviews would be good to have any design there... (no comeback for giving a bad review). you can clear your review and the write new one. same for rating - see Market menu on app's

[android-developers] Re: Comments and Contacting Users

2011-06-26 Thread b0b
I have the solution for you: ignore all users that don't know to reach you. The comment section of the Market is read-and-forget only most of the time. On Jun 26, 2:04 am, Halsafar shinhalsa...@gmail.com wrote: How on earth does a developer contact a user who makes a comment about their app?  

[android-developers] Re: Comments and Contacting Users

2011-06-26 Thread Adam Ratana
How do you review your own _paid_ app? This would be handy to respond to some comments, but Im not able to purchase my own app to do so. Or were you just referring to free apps? On Jun 26, 3:20 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On Jun 26, 2011 2:20 AM, Daniel Drummond

[android-developers] TabWidget on HTC Hero with Android 2.1

2011-06-26 Thread nadam
The TabWidget on HTC Hero with Android 2.1 looks more like the one in Android 1.6, so using drawable-v5 style tab icons looks wrong and the text is invisible on the selected tab. Is there any work-around for this? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Crash logs?

2011-06-26 Thread Santiago Lema
Thanks Treking, I'll definitely give this a try. Still don't understand why Google doesn't display this. I mean you get this information in the statistics, so why not with the crashlogs. On 20 juin, 21:49, TreKing treking...@gmail.com wrote: On Mon, Jun 20, 2011 at 3:53 PM, Santiago Lema

Re: [android-developers] Re: Can't show AlertDialog

2011-06-26 Thread Andrew Gregory
OK, thanks for that. I'll leave the managed dialog as-is. Thanks to everyone who replied here and directly to me. Andrew On 26 Jun 2011 14:32, TreKing treking...@gmail.com wrote: On Sat, Jun 25, 2011 at 7:56 PM, andrewg_oz andrew.greg...@gmail.com wrote: It seems, though, that calling show()

[android-developers] OverlayItem Parcelable?

2011-06-26 Thread Danny D
Hi, Is the Maps API class OverlayItem parcelable? If not, can I extend the OverlayItem class and add my own implementation of Parcelable (for my extended data) and have it function correctly? Thanks. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] what's wrong with this http post to server code?

2011-06-26 Thread 陈彧堃
I use deflater to compress string data. It works fine on java console project, but while running on android enviroment, server will report buffer error problem and reture 500. SendMessage(String content, String url) { byte[] bs = deflaterCompress(content); URL url = new URL(urlStr);

[android-developers] Install % not updating?

2011-06-26 Thread Zsolt Vasvari
Is it only my app which has an install% not updating, but the download number is? This has been going on for a week. No new installs as far as Google is concerned - Install% going down - Ranking from #4 to #8 -- Sales tanked Of course, nobody at Google is responding. -- You received this

[android-developers] Re: Droid X 2 issue

2011-06-26 Thread Chris
Way out of date btw. -- 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+unsubscr...@googlegroups.com For

Re: [android-developers] what's wrong with this http post to server code?

2011-06-26 Thread из за Угла
You do not set content length. It supposes to be chunked, but it's worth to set some http watcher and see what actually you transfer. -- 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] what's wrong with this http post to server code?

2011-06-26 Thread 陈彧堃
i tried that, result has no difference 2011/6/27 Дениска, Рынский (из за Угла) denis.ryn...@gmail.com You do not set content length. It supposes to be chunked, but it's worth to set some http watcher and see what actually you transfer. -- You received this message because you are subscribed

[android-developers] Looking for tester of Android application

2011-06-26 Thread из за Угла
I am interested to find people who create web application packaged as war and ear files to run directly on ANdroid devices. If somebody can share any information, I really appreciate. I develped application server running on Android devices and I want just make sure it can run arbitrary any

[android-developers] Re: Looking for tester of Android application

2011-06-26 Thread Zsolt Vasvari
Come again? On Jun 27, 12:03 pm, Дениска, Рынский (из за Угла) denis.ryn...@gmail.com wrote: I am interested to find people who create web application packaged as war and ear files to run directly on ANdroid devices. If somebody can share any information,  I really appreciate. I develped

Re: [android-developers] Install % not updating?

2011-06-26 Thread Nikolay Elenkov
On Mon, Jun 27, 2011 at 12:35 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Is it only my app which has an install% not updating, but the download number is? Here we go again :) For a few days now (less than a week, I think), only the total installs have been increasing, while the active

[android-developers] Re: weird behaviour while overriding FrameLayout.dispatchDraw() on a view that contains a scrollview

2011-06-26 Thread rukiman
Do you know why calling view.draw() on a scrollview draws the screen disregarding the current scrollY and assumes the scrollview is at the beginning always? On Jun 24, 10:14 am, Romain Guy romain...@android.com wrote: The drawing cache is per view, so if you need to capture several views

[android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
Hi developers , I want to check the launch time for in built browser ?. am not getting callbacks for the in built browser Thanksinadvance -- Thanks, Gurusagar -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Launch time? What does that mean exactly? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:39 AM, guru sagar gurusagar...@gmail.com wrote: Hi developers , I want to check the launch time for in

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
i want to check the app launch time for in built browser for varoius devices . Is it possible On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek coomar@gmail.com wrote: Launch time? What does that mean exactly? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
App Launch time in in-built browser? Still, I am not sure what is your question. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:45 AM, guru sagar gurusagar...@gmail.com wrote: i want to check the app launch time for in

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
launch time for android browser . On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek coomar@gmail.com wrote: App Launch time in in-built browser? Still, I am not sure what is your question. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
Hi Kumar , If you dont mine shall i send chat request to you . On Mon, Jun 27, 2011 at 10:58 AM, guru sagar gurusagar...@gmail.com wrote: launch time for android browser . On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek coomar@gmail.comwrote: App Launch time in in-built

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Time till ? 1. Browser is visible? 2. WebPage starts loading? 3. Scripts end loading? 4. Page loading complete? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 10:58 AM, guru sagar gurusagar...@gmail.com wrote: launch time for

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
when browser is visible , On Mon, Jun 27, 2011 at 11:00 AM, Kumar Bibek coomar@gmail.com wrote: Time till ? 1. Browser is visible? 2. WebPage starts loading? 3. Scripts end loading? 4. Page loading complete? *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com

[android-developers] Re: Install % not updating?

2011-06-26 Thread Zsolt Vasvari
But if this were a generic problem, this would effect the ranking of all apps. The fact that only mine (and yours) are dropping, but not the competitors are indication that this is not a problem with all apps. On Jun 27, 12:41 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Mon, Jun 27,

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
I don't think you can do that. The browser app is not in your control. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Mon, Jun 27, 2011 at 11:03 AM, guru sagar gurusagar...@gmail.com wrote: when browser is visible , On Mon, Jun 27, 2011 at 11:00

[android-developers] Re: Hi-Launch time

2011-06-26 Thread Zsolt Vasvari
He wants to chat you up. At least make him buy you a couple of drinks or something. On Jun 27, 1:30 pm, Kumar Bibek coomar@gmail.com wrote: Time till ? 1. Browser is visible? 2. WebPage starts loading? 3. Scripts end loading? 4. Page loading complete? *Thanks and Regards, Kumar

Re: [android-developers] Re: Install % not updating?

2011-06-26 Thread Nikolay Elenkov
On Mon, Jun 27, 2011 at 2:33 PM, Zsolt Vasvari zvasv...@gmail.com wrote: But if this were a generic problem, this would effect the ranking of all apps.  The fact that only mine (and yours) are dropping, but not the competitors are indication that this is not a problem with all apps. Maybe.