[android-developers] Re: Gif image not display properly in android

2012-07-10 Thread Mek Rama
The .gif file format is discouraged. Consider using .png (preferred) or .jpg (acceptable) instead. http://developer.android.com/guide/topics/resources/drawable-resource.html#Bitmap On Monday, July 9, 2012 11:46:06 PM UTC+5:30, arunkumar wrote: Hello all, I have loading gif image. i am

[android-developers] Re: .apk upgradtion

2012-07-10 Thread Mek Rama
(*)The correct approach: change the version in manifest manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.mek.amr.amrradio android:versionCode=1 android:versionName=1.1 (*)It's not mandatory to uninstall in the device but On Tuesday, July 10, 2012

Re: [android-developers] Best books for learning Android

2012-07-01 Thread Mek Rama
Hello Kristopher, Could you tell me what is best in Mark Murphy's books. Hello Jason Hsu Yes, official document is always the first choice to learn from basics to advanced. Follow the developers blog for latest updates and useful points for practical implementations,etc. Books would help

[android-developers] Re: C2DM is deprecated from june26th

2012-06-29 Thread Mek Rama
can you share the news from Google android or send the link if it is posted in Google's android blog.?? On Thursday, June 28, 2012 2:46:47 PM UTC+5:30, SIDHU wrote: Hi guys C2DM was deprecated and GCM came into existance plz notify this to every one -- You received this message because

[android-developers] Re: C2DM is deprecated from june26th

2012-06-29 Thread Mek Rama
://developer.android.com/guide/google/gcm/c2dm.html document for more information On Saturday, June 30, 2012 10:57:55 AM UTC+5:30, Mek Rama wrote: can you share the news from Google android or send the link if it is posted in Google's android blog.?? On Thursday, June 28, 2012 2:46:47 PM UTC+5:30, SIDHU

[android-developers] Re: Splitting screen area

2012-05-31 Thread Mek Rama
Fragments seems to be better fit for your requirement. Use of hidden layouts is not recommended. On Monday, May 28, 2012 4:33:48 PM UTC+5:30, gayathri r wrote: Hi All, How is it possible to split a screen into say 3 or 4 sections?I want to basically have different colour option to be

[android-developers] Re: XML parseing working in android 2.2 but not in android 4.0

2012-05-31 Thread Mek Rama
Hello Bhaumik Thaker, You need execute the code in a thread. For example use asynctask and update the UI thread if required. You may need to use Handler on main thread to execute async task so that it works in 4.x version and lower versions. regards On Wednesday, May 16, 2012 3:54:29 PM

[android-developers] Re: XML parseing working in android 2.2 but not in android 4.0

2012-05-31 Thread Mek Rama
Hello Bhaumik Thaker, You need execute the code in a thread. For example use asynctask and update the UI thread if required. You may need to use Handler on main thread to execute async task so that it works in 4.x version and lower versions. regards On Wednesday, May 16, 2012 3:54:29 PM

[android-developers] Re: ICS don't give you a real multitasking.

2012-05-21 Thread Mek Rama
Yes, Fragments helps a lot. I did multi tasking using activities, Asyctask, hidden layouts in a Relative lout,etc. But Fragments is the best solution, I believe.Not sure about compatible jars of fragments that works in lower versions, but heard that it works equally good. I think every

[android-developers] Re: Listview with multiple layout

2012-05-21 Thread Mek Rama
Layout: Two layout xml files: 1)one layout for listview 2)another layout for list items. use two textview widget and arrange it one below other. Layout: 1)linear layout 2)relative layout or use combination of relative and linear application code: use i)SimpleCursorAdapter ii)custom