Re: [android-developers] Re: unable to open database file after OS upgrade

2010-04-10 Thread Mariano Kamp
Yes, that worked for me too. Actually re-installing the apps on the users' phones alone was enough. But this is just dealing with the symptoms and would've liked to know why the OS updates break apps and if there are any counter measures the developer can do? And also meanwhile I got more than

[android-developers] Problem with scrollbar.

2010-04-10 Thread mmkr
Hi all, I have a layout with scrollbar ScrollView android:id=@+id/scroll android:layout_height=455px android:layout_width=fill_parent LinearLayout android:id=@+id/relative

[android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2010-04-10 Thread mendhak
Hi, thanks for responding. I had a look, and yes, the bytes were the same as the 979 character string (hex) - they contained the certificate itself. I should post it here anyways, since it is the debug certificate in this case. Well, here it is: --

Re: [android-developers] Re: any lawyer types out there that can get this site down?

2010-04-10 Thread SoftwareForMe.com SoftwareForMe.com
@Nick, I know you didn't say that (that you were being dragged in), I was responding to what someone else said, about you. Just pointing out that nobody is to blame if your name is on public records affiliated with things you wish not to be affiliated with. That's sorta your responsibility. @JP,

[android-developers] Re: List View Item Strange Behavior

2010-04-10 Thread Binesy
I update the tag on the button after the else and it works. Thanks TreKing :) On Apr 9, 1:31 pm, Agus agus.sant...@gmail.com wrote: You are using convertView object which is a recycled view. On Thu, Apr 8, 2010 at 2:42 AM, Binesy ross.bi...@gmail.com wrote: Hi, I have been having some

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

2010-04-10 Thread dgoemans
Still no-one in Europe? Myself and another dev i know in the Netherlands have not got ours yet. On Apr 8, 11:57 pm, olivier.bo...@gmail.com olivier.bo...@gmail.com wrote: Sorry, I meant in Europe, no phone seems to have been received outside the US yet except for ADC2 phones (and yes I think

[android-developers] 'Avoiding memory leaks' article in android blog

2010-04-10 Thread NoraBora
I just read the article 'Avoiding memory leaks' in android blog written by Romain Guy. http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks.html According to the article, the below code has memory leak when rotating because the static drawable has a reference to Activity.

[android-developers] Re: Managing Google apiKeys

2010-04-10 Thread Hugo Visser
Another way to approach this is to build your releases in an automated way. So you run all your dev stuff from Eclipse, and when it's time to release you build it automated. I'm using hudson for this and I've written a post on the hudson ci blog about it here:

Re: [android-developers] 'Avoiding memory leaks' article in android blog

2010-04-10 Thread Michael Rueger
On 4/10/2010 10:38 AM, NoraBora wrote: I understand sBackground has a reference to TextView, and the TextView has a reference to Activity. I know when a device is rotated, Activity is destroyed and created again. but I think when a new Activity is created, sBackground setCallback a new

Re: [android-developers] Re: Question on showing contacts with all numbers

2010-04-10 Thread Jiri
So i checked out the code, which I think you meant, but it seems to be using spinners. My goal is to reach the following in a listActivity, i.e present all the data as a 'flat' sctructure. Is there anyone that can help me out on this one? ContactName number number number ContactName number

[android-developers] Re: Android GPS app stopped unexpectedly

2010-04-10 Thread bob
This is my manifest file: ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.wissen.android application android:icon=@drawable/icon android:label=@string/app_name activity android:name=.Hello

[android-developers] Re: Unable to edit the SyncAdapter Contacts

2010-04-10 Thread Jens
There's a bug report about this intentional misdesign already: http://code.google.com/p/android/issues/detail?id=5988 On 5 Apr, 18:03, Jegadeesan M jeg...@gmail.com wrote: Hi All , Actually i tried the SampleSyncAdapter (Sample Sync Adapter examples), its working fine for me. but i am not

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

2010-04-10 Thread Thomas Riley
Still nothing for me in UK either. From what Google have said via email, it's likely to be a few more weeks. Worth the wait though ;) On Apr 10, 9:28 am, dgoemans dgoem...@gmail.com wrote: Still no-one in Europe? Myself and another dev i know in the Netherlands have not got ours yet. On Apr

[android-developers] Re: Internal links in Webview

2010-04-10 Thread Farha Ansari
I used onPageStarted() as on any link click, it comes here, this is where we can do any related task. This is what I have used. On Apr 8, 9:58 pm, nikhil nik...@gmail.com wrote: Hey Farha, Did you find out ? On Mar 24, 1:36 am, Farha Ansari farha45ans...@gmail.com wrote: How can we find

[android-developers] Writing text on icon of Menu in Android?

2010-04-10 Thread javame_android
Hi, Can we set Title for a Menu Item in Android if it has an icon from drawable? I have a icon for a Menu Item and if I set the icon then the title that is set for that Menu item is not visible. Is this possible or not? Hope to get a reply soon. Regards Sunil -- You received this message

[android-developers] [DUPLICATE]Re: Trying to achieve scale centerCrop with Activity windowBackground drawable

2010-04-10 Thread patbenatar
It seems my first attempt to post this did end up making it through... http://groups.google.com/group/android-developers/browse_thread/thread/59201dd5cddf7e94 On Apr 9, 1:50 am, patbenatar patbena...@gmail.com wrote: Hey all- I apologize in advance if the list receives two copies of this...

Re: [android-developers] Writing text on icon of Menu in Android?

2010-04-10 Thread Mark Murphy
javame_android wrote: Can we set Title for a Menu Item in Android if it has an icon from drawable? For option menus, yes. Every option menu on your Android device does this -- look at the Browser, or Contacts, or any other built-in app. For context menus, no, because icons on are not

[android-developers] Re: Creating Proxy Server

2010-04-10 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
proxy http in your streaming context refers to server side as you will not fit a streaming server proxy on android. On Mar 27, 7:39 pm, Scott sjholli...@gmail.com wrote: Looking for help with creating an http proxy server via Android. It's a bit difficult to ask this question with examples,

[android-developers] Re: Writing text on icon of Menu in Android?

2010-04-10 Thread javame_android
Hi, I have looked into that tutorial. I have four menu items and each having an icon of 320*68. The problem is that the icon is 320*68 so it occupies all the space of a menu item and the text is not displayed. If I remove the icon then the text is displayed. Probably I am not able to write on

Re: [android-developers] Re: Writing text on icon of Menu in Android?

2010-04-10 Thread Mark Murphy
javame_android wrote: I have four menu items and each having an icon of 320*68. Your icons are much too big. Please read the documentation for appropriate menu icon sizes: http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#menustructure You are bigger in both

[android-developers] Re: Writing text on icon of Menu in Android?

2010-04-10 Thread javame_android
Hi, Thanks for replying fast. Can we change the background color of Menu items and then write on top of it? Thanks Regards Sunil -- 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] Re: Writing text on icon of Menu in Android?

2010-04-10 Thread Mark Murphy
javame_android wrote: Thanks for replying fast. Can we change the background color of Menu items and then write on top of it? No. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- You received

Re: [android-developers] Re: Writing text on icon of Menu in Android?

2010-04-10 Thread Sattanaathan Ravi
then may be use photoshop to write whatever you want it to be displayed on the menu(bottom of the image) , then export it ad use it .. :) -- 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] Creating Proxy Server

2010-04-10 Thread David Turner
Writing a fully-compliant rewriting http proxy is non-trivial, but still do-able. You could have a look herehttp://android.git.kernel.org/?p=platform/external/qemu.git;a=blob;f=proxy/proxy_http_rewriter.c;h=afd929c0a48e7a635a8a8423a1f1566f34b628ec;hb=masterto see how the one in the emulator is

Re: [android-developers] Re: Creating Proxy Server

2010-04-10 Thread David Turner
On Sat, Apr 10, 2010 at 3:40 AM, Fred Grott(Android Expert, http://mobilebytes.wordpress.com) fred.gr...@gmail.com wrote: proxy http in your streaming context refers to server side as you will not fit a streaming server proxy on android. He only needs a proxy for his own process, this is

[android-developers] Re: dex.jar not loaded from SDK folder

2010-04-10 Thread Eric Carman
Hello Bob, Thank you for answering. I tried 1,3 (a few times) before posting. I had hoped it would be something like this. I will try cleaning - thanks for reminding me about that one. As to point 7, rather than reinstalling Eclipse, I updated its SDK (after posting original message). Thought

[android-developers] Re: dex.jar not loaded from SDK folder

2010-04-10 Thread Eric Carman
Hello Xavier, Yes, this was actually the first project I developed for Android. It does have a default.properties file. I looked through that and nothing jumped out at me, but it warrants a closer look. Thank you very much for your help. -- You received this message because you are

[android-developers] Text color in fast scroll SectionIndexer box

2010-04-10 Thread EPecorari
Hi, I have a ListView with the fast scroll enabled. The background of the listview is white and the text is black. The box indicating the letter of the section is being scrolled at the moment is in black. Is it possible to customize that colore and turn to white? If yes, how can I do that?

[android-developers] Setting a Live Wallpaper

2010-04-10 Thread kec6227
Is there a way to set a live wallpaper, similar to WallpaperManager.setBitmap() to set a static image? Thanks - Kenton -- 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

[android-developers] Re: Best practise for storing app. Configuration

2010-04-10 Thread Gubatron
I'll make it get the SharedPreferences then with a method everytime then, I had it like that before but I had the impression after reading the Designing for Performance document on the dev guide that it was better to use static references than calling virtual methods (on android). On Apr 10, 1:26 

Re: [android-developers] Re: Best practise for storing app. Configuration

2010-04-10 Thread Mark Murphy
Gubatron wrote: I'll make it get the SharedPreferences then with a method everytime then, I had it like that before but I had the impression after reading the Designing for Performance document on the dev guide that it was better to use static references than calling virtual methods (on

[android-developers] Lazy Loading of images in the list view

2010-04-10 Thread praj
Hi, I was trying to implement the lazy loading of images in the list view. For implementing this i was referring to post by Tom van Zummeren. (http://blog.jteam.nl/2009/09/17/exploring-the-world-of-android- part-2/), but my images keep on changing in the list. Please can anyone let me know if

[android-developers] Re: new service: link to android market from device and computer

2010-04-10 Thread ko5tik
On Apr 10, 2:33 am, Lance Nanek lna...@gmail.com wrote: Delivering the APK on most devices would be very bad. Users with the app installed via that method will not be able to rate or comment on the app's Market page, will not receive updates, will not count toward the app's download or

[android-developers] SDK1.5 - AsyncTask Problems

2010-04-10 Thread Anthoni
Hello, My program was going wonderfully. It is a search engine that connects to our back end database by sending Get requests to our server and displays the results. I've managed to get it to query my server and back end database, return results using JSON, return the first headers and pour them

[android-developers] Re: Setting a Live Wallpaper

2010-04-10 Thread Carter
Nope. Android 2.1 won't allow it. - Carter On Apr 10, 10:26 am, kec6227 kec6...@gmail.com wrote: Is there a way to set a live wallpaper, similar to WallpaperManager.setBitmap() to set a static image? Thanks  - Kenton -- You received this message because you are subscribed to the Google

Re: [android-developers] SDK1.5 - AsyncTask Problems

2010-04-10 Thread Mark Murphy
Anthoni wrote: I think it is because I am trying to call AsyncTask again. I remember reading that the AT can only be called once, but I presumed quite wrongly that this meant you can not do concurrent calls. I thought that once an AT had done it's task it was cleared and then could be called

Re: [android-developers] Lazy Loading of images in the list view

2010-04-10 Thread Prajakta Shitole
Forgot to paste my code:- class IconicAdapter extends ArrayAdapter { Activity context; Context context2; HashMapString,String ret = new HashMapString,String(); AsyncLoader async;// = new AsyncLoader(); private ListView listView; HashMapString,Bitmap bit = new HashMapString,Bitmap();

[android-developers] Change item in Listview after clicking

2010-04-10 Thread Pinheiro
Hi! I've created a rather complex layout for listview rows where only the first line is visible (the rest use android:visibility=hidden). When an item is selected, I want all the invisible objects to appear (selected.setVisibility(1)) - checking first if I have to hide again the previous

Re: [android-developers] Change item in Listview after clicking

2010-04-10 Thread Mark Murphy
Pinheiro wrote: Hi! I've created a rather complex layout for listview rows where only the first line is visible (the rest use android:visibility=hidden). When an item is selected, I want all the invisible objects to appear (selected.setVisibility(1)) - checking first if I have to hide again

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-10 Thread Viktor Linder
I understand that this is pseudo-code, so it probably does not reflect your actual implementation, but I have two comments on this code: * Depending on how the scheduler works, the GameLogicThread or the Renderer thread may receive the lock two or more times in succession. * The renderer and the

Re: [android-developers] Lazy Loading of images in the list view

2010-04-10 Thread Prajakta Shitole
I was able to resolve the issue, just made simple tweaks like removing the drawableMap we just need the imageCache. On Sat, Apr 10, 2010 at 10:51 AM, Prajakta Shitole prajakt...@gmail.comwrote: Forgot to paste my code:- class IconicAdapter extends ArrayAdapter { Activity context; Context

[android-developers] Re: photo URI of contact's image so i can use it with SimpleCursorAdapter

2010-04-10 Thread poohtbear
Checked with stackoverflow site as well. apparently, there is not way, currently, to qury a row in which you have both, ID, DISPLAY_NAME and PICTURE_URI. It wont help anyway since i wanted to use it for the adapter, and if the image uri points to null or is null itself i'll get an exception, so i

Re: [android-developers] Re: Finally, I published my Android/GAE based MMO War Game

2010-04-10 Thread Jason LeBlanc
Can you private me the contact for your graphics artist.please! J On Apr 9, 2010 11:05 PM, ZeroCool zero...@gmail.com wrote: Hi, Thanks for the advice. I hired a graphic designer, who is a genius artist. I did everything else :) On Apr 2, 10:59 pm, Yahel kaye...@gmail.com wrote: Yo man

[android-developers] Re: SDK1.5 - AsyncTask Problems

2010-04-10 Thread Anthoni
Thank you Mark, I didn't actually see that. Turns out I was calling svrClient.getConnectionManager().shutdown(); where svrClient is a HTTPDefaultClient object. What gets me is that I can call the method that this resides in from two seperate activities and not recieve this error, but call it

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-10 Thread Bob Kerns
If a thread is hogging the CPU, it is *BY DEFINITION* not idle. And vice versa. An idle thread will be waiting on something. Either a synchronization lock, or an object using wait(), or some blocking IO call. This may be buried inside some other code, of course. I would suggest wondering why you

Re: [android-developers] Re: Managing Google apiKeys

2010-04-10 Thread Tom Opgenorth
I'm looking to automate my build. But I'm a .NET guy by day, so am not 100% familiar with all the Java tools yet. I've heard of Hudson (highly regarded amongst my peers), so I will definitely check this out. On Sat, Apr 10, 2010 at 02:49, Hugo Visser botte...@gmail.com wrote: Another way to

Re: [android-developers] Managing Google apiKeys

2010-04-10 Thread Tom Opgenorth
On Fri, Apr 9, 2010 at 19:12, Mark Murphy mmur...@commonsware.com wrote: Or perhaps you sync your debug.store files. That too would work! Is there a way to, on a project by project basis, specify which debug.store file to use? i.e. does it always have to be ~/.android/debug.store? --

Re: [android-developers] Managing Google apiKeys

2010-04-10 Thread Mark Murphy
Tom Opgenorth wrote: On Fri, Apr 9, 2010 at 19:12, Mark Murphy mmur...@commonsware.com wrote: Or perhaps you sync your debug.store files. That too would work! Is there a way to, on a project by project basis, specify which debug.store file to use? i.e. does it always have to be

[android-developers] Re: Sending/Receiving Lists anroid - webserver

2010-04-10 Thread Bob Kerns
You may want to pause at this point, and consider whether this is REALLY what you want to do. There are major limitations involved with using object serialization this way, that affect you both now and in the future, and you have to think VERY carefully about the implications of both. The object

[android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2010-04-10 Thread Bob Kerns
OK, converting to base64 (using your link), formatting it as a certificate file, and using openssl to parse the result, we get to see the actual content: Certificate: Data: Version: 3 (0x2) Serial Number: 1269799100 (0x4baf98bc) Signature Algorithm:

[android-developers] Renaming image files created by the Camera class ?

2010-04-10 Thread Emre A. Yavuz
Hi, I was just wondering whether anybody has experienced a similar problem before: We're using the Camera class (SDK 1.5) to capture images in HTC Hero. However when we try to rename the image files after, the device does not let us do it even though we have the root privileges. We just

[android-developers] Re: dex.jar not loaded from SDK folder

2010-04-10 Thread Eric Carman
Clean did the trick. Still not sure what was the problem, but we seem to moving along nicely now. Thank you both so much for helping. Best Regards, Eric -- 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] Settings Intent in Sense UI

2010-04-10 Thread GodsMoon
I'm trying to link to the settings menu. The following code works great for stock Android but doesn't work in the 2.1 HTC Sense UI. Intent goToSettings = new Intent(Settings.ACTION_LOCALE_SETTINGS); goToSettings.setComponent(new

[android-developers] Re: Change item in Listview after clicking

2010-04-10 Thread Pinheiro
Gotcha! Thanks, Mark! Unfortunately, it solves half the problem. When clicked, the hidden objects appear but the older selection doesn't disappear: private int selection=-1; ... public void onListItemClick(ListView parent, View v,int position, long id) { TextView tv; View

[android-developers] Re: Best practise for storing app. Configuration

2010-04-10 Thread Bob Kerns
You shouldn't optimize blindly things without a clear need for optimization. Even if you correctly understood the optimization, for something done infrequently, you're more likely to introduce bugs than improve performance to any detectable degree. On Apr 10, 9:35 am, Gubatron gubat...@gmail.com

Re: [android-developers] Re: Finally, I published my Android/GAE based MMO War Game

2010-04-10 Thread Abdul Mateen
Sorry for the personal Question, you have made so much effort , but how you are making earnings from this game? I am bit interested in this, because I have applications pending just because of this question, how will I earn from application I publish. On Fri, Apr 9, 2010 at 9:05 PM, ZeroCool

Re: [android-developers] Settings Intent in Sense UI

2010-04-10 Thread Mark Murphy
GodsMoon wrote: I'm trying to link to the settings menu. The following code works great for stock Android but doesn't work in the 2.1 HTC Sense UI. Intent goToSettings = new Intent(Settings.ACTION_LOCALE_SETTINGS); goToSettings.setComponent(new

Re: [android-developers] Re: Change item in Listview after clicking

2010-04-10 Thread Mark Murphy
Pinheiro wrote: Anyway, it seems I'll have to rethink my list since objects defined as invisible in the layout nevertheless occupy screen space (!). There is a separate visibility level of GONE that makes the widgets, well, gone. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Lazy Loading of images in the list view

2010-04-10 Thread Carmen Delessio
I think this is a recurring topic. Here is something I posted on it previously. I was looking for a recommended or consensus approach. Romain mentioned that his technique takes into consideration things like whether the list is scrolling or not. Here are 4 references that I have found for

[android-developers] Re: Settings Intent in Sense UI

2010-04-10 Thread GodsMoon
I was actually looking for Settings.ACTION_SECURITY_SETTINGS but your comment lead me right to it. Thanks. On Apr 10, 5:36 pm, Mark Murphy mmur...@commonsware.com wrote: GodsMoon wrote: I'm trying to link to the settings menu. The following code works great for stock Android but doesn't work

[android-developers] Re: Finally, I published my Android/GAE based MMO War Game

2010-04-10 Thread Yahel
I have applications pending just because of this question, how will I earn from application I publish. You should never have a pending application because of this. Release your app, make it available to your customer, get the feedback, and somehow at some point, with a big user base, you'll

[android-developers] How to know a view size before it's rendered

2010-04-10 Thread Mickey
Hi There, I'm a beginner of Android and I'm trying to understand how I can get the size of a View (or a ViewGroup) before this is rendered on the screen. What I'm trying to achieve is to apply some animations on some child views and it would be great if there's a way to know in advance the size

Re: [android-developers] Lazy Loading of images in the list view

2010-04-10 Thread Prajakta Shitole
Hi Carmen, It was because of your post that I could implement the above code. I found the links from your post itself. Thanks for the links and procedure. Thanks, Prajakta On Sat, Apr 10, 2010 at 2:52 PM, Carmen Delessio carmendeles...@gmail.comwrote: I think this is a recurring topic. Here

[android-developers] Advertising Secrets

2010-04-10 Thread olipolus
You have to understand how Google ranks your site. First, it looks at the content, for keywords, as well as special meta parts of your webpage such as it's title and URL. Then it will use it's own proprietary ranking method known as Page Rank. http://advertising-moneybizhome.blogspot.com/ --

Re: [android-developers] Lazy Loading of images in the list view

2010-04-10 Thread Prajakta Shitole
I am currently trying to display a spinning progress bar till my images load in the progress bar, My progress bars are visible and when the images appear only the first row of my listview is displayed properly - as in the progress bar is dismissed and the image appears however for the rest of the

[android-developers] Re: Sending/Receiving Lists anroid - webserver

2010-04-10 Thread raqz
I got your point Bob. Thanks for the detailed post of yours. I better learn to covert this into an xml rather than using objects. Would you have a good tutorial with example which could help me do that. Thanks, Raqeeb On Apr 10, 4:13 pm, Bob Kerns r...@acm.org wrote: You may want to pause at

Re: [android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-10 Thread Miguel Morales
Ok, like I said I may have missed something, but say I have something like this: class MyThread extends Thread { run() { while (something) { if (something_else) //perhaps input has changed, or we have data in a socket { //do some work,

[android-developers] Re: Android OpenGL Game - App Architecture and Threading Logic

2010-04-10 Thread Robert Green
Viktor, specifically in an Android 3D game using GLSurfaceView, the are you want to parallelize on is what happens after the lock is released by the renderer because significant time will be spent during the buffer swapping as the gl command list is flushed there and it is at that time that the

[android-developers] Re: Down Tab Bar in Android

2010-04-10 Thread HeHe
in case you still find no way to go, here is mine that you might like to try if you can bear the fly in the ointment -- the thin white bar of tabwidget is below instead of above the tab buttons. hope android team shall give more flexibility in this aspect :-@ ?xml version=1.0 encoding=utf-8?

[android-developers] Re: 'Avoiding memory leaks' article in android blog

2010-04-10 Thread Streets Of Boston
Yep, You don't directly see it, but if i have understood older posts correctly, sBackground has a reference to a context that was used when it was created. This context is the activity-context that holds on to the activity that originally was used when creating sBackground. So, via via,

Re: [android-developers] Re: Service vs Singleton

2010-04-10 Thread Jason LeBlanc
Since process != application.. just what are the distinctions? On Fri, Apr 9, 2010 at 5:06 PM, Bob Kerns r...@acm.org wrote: Just to point out a couple more things here. 1) a Service's lifetime is NOT, in general, the same as an Application's lifetime. A service can be deleted when it's not

Re: [android-developers] Re: Finally, I published my Android/GAE based MMO War Game

2010-04-10 Thread Abdul Mateen
Dear Yaheal, Thank you for your advice, Will try releasing apps :) Thank You, Abdul Mateen. On Sat, Apr 10, 2010 at 3:04 PM, Yahel kaye...@gmail.com wrote: I have applications pending just because of this question, how will I earn from application I publish. You should never have a

[android-developers] Steps to transfer a simple object from server to android using XML

2010-04-10 Thread raqz
Hi, Could some one please tell me the basic steps that are required to transfer a list of objects from a webserver to android and vice versa using XML. I searched tutorials but found tutorials only for complex RSS feeds or something like that. Thanks, Raqeeb -- You received this message

[android-developers] Re: How to know a view size before it's rendered

2010-04-10 Thread Kumar Bibek
I don't think you can get those before they are rendered. The final bounds will be decided only after the view is rendered, which might be different on different screen sizes, of course unless , the views are hard-coded with pixel sizes. Thanks and Regards, Kumar Bibek On Apr 11, 3:09 am, Mickey

[android-developers] layout on top of the InCallScreen

2010-04-10 Thread sleith
Hi, i use the PhoneStateListener to listen for the call. When i receive ringing state, i tried to launch an intent to run my app. but i noticed that my app is go behind the InCallScreen. I've tried using delay time to make the InCallScreen pop up first, then launched my app, but still cannot