[android-developers] New Open Source Library for Android Developers

2016-09-24 Thread Kofi Gyan
We just made one of our libraries open to the Android Developer Community. We hope you all find it useful. Your reviews and contributions are welcomed. Library - StateProgressBar ( https://github.com/kofigyan/StateProgressBar ) About Library - Add clarity and context to your app. Indicate the

[android-developers] StateProgressBar Library

2016-09-21 Thread Kofi Gyan
Improve your app ui. Add states,transitions and context to your android apps and games using StateProgressBar Library. https://github.com/kofigyan/StateProgressBar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this

Re: [android-developers] Resource linking / imports

2010-06-23 Thread Gyan
Making the usage of .9png images compulsory! Probably there is a smart way of installing only the required drawables on a particular hardware, so that at least the installed application isn't bloated! A perfectly discerning! -Gyan -- You received this message because you are subscribed

Re: [android-developers] Re: Poor roaming performance ! Is it an Android bug ?

2010-06-23 Thread Gyan
@David this WAS and IS a present problem with Android. The cache doesn't clear all the time! Hope Google has something to say! Gyan -- 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: [android-developers] Using SyncAdapter for syncing application data

2010-06-23 Thread Gyan
Nice thought. But do you really think you need an adapter to answer this. This is just a data sync functionality! If its tightly tied to UI re-drawing/customization then you might go with writing SyncAdapter otherwise you can, very well, stick with an interface! Thanks Gyan -- You received

Re: [android-developers] Display a Dialog in non-Activity (simple Java) Class By passing Parameters

2010-06-23 Thread Gyan
make the activity variable static and don't use this try getApplicationContext or an instance created with new keyword -- 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

Re: [android-developers] Service unable to call Java Class Methods

2010-06-22 Thread Gyan
Can you paste the logcat trace? Some hints 1. Have u imported the class(logger) 2. Debugging the service - sysouts 3. Creating ur own - not advisable(might hamper responsiveness) - use the existing Logger - just in case! Gyan -- You received this message because you are subscribed

Re: [android-developers] Poor roaming performance ! Is it an Android bug ?

2010-06-22 Thread Gyan
version does your phone run? Gyan -- 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

Re: [android-developers] Re: Poor roaming performance ! Is it an Android bug ?

2010-06-22 Thread Gyan
DNS cache might not be the actual problem too! Try clearing browser cache from the applications' menu! Gyan -- 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

Re: [android-developers] Re: Service unable to call Java Class Methods

2010-06-22 Thread Gyan
Try giving the entire context path all the time. myprojects.android.loggingModule.Logger.Log() Or try using reflections API built in Android!! Gyan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: notifyDataSetChanged() not updating listview after orientation change

2010-06-22 Thread Gyan
Classic problem! Use a static variable rather than onRetainConfigurationChange() lot of state data to be saved doesn't work all the time!! Gyan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Poor roaming performance ! Is it an Android bug ?

2010-06-22 Thread Gyan
Correct - if the browser behaves so clear the browser cache As browser is like any other app, you can clear whichever applications' cache and it might work! Else restarting ur phone works all the time! Gyan -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Disable Bluetooth discoverable mode

2010-06-14 Thread Gyan
another way to go about. You can achieve performance there, albeit I've not used the NDK for BlueTooth Gyan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

Re: [android-developers] Re: Disable Bluetooth discoverable mode

2010-06-11 Thread Gyan
tracker regarding this. STAR it, so that in the future other developers might not experience this problem. Thanks Gyan twitter.com/gyandroid -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Image viewer widget with zooming capability

2010-05-12 Thread Gyan
Thats a good idea!! I don't think there is any API that could allow you to do it directly!! You need to use the RemoteIntent to do actions that change the widget appearence! But a good thought! Gyan -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] string-array max size?

2010-05-12 Thread Gyan
Try not to load it in an activity, but in the adapter. Try extending the array adapter and load your static values there!!! Gyan -- 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: [android-developers] Gallery elasticity at the ends

2010-05-12 Thread Gyan
How about applying animation on the layout that shows this gallery view!! I think you get the animation co-ords from the net for the inertial scroll Gyan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: Getting contact photos from Facebook only contacts

2010-05-12 Thread Gyan
Not sure if google exposes this... but you can very well use ur facebook account and implement this urself and expose the name/photo/other data as a content and use it... wont be any different; just that you will be using your own sqlite DB for this and entropy will be less as its the contact book

Re: [android-developers] Re: How to get selected items in a ListView (multi selection check boxes)? - URGENT PLZ

2010-05-12 Thread Gyan
Have experienced this myself. implement a ListAdapter for the same and handle ur items from there... Additionally u can use onDataSetChanged to check for the multiple check and uncheck options.i mean to say you can actually debug this at this overridden method! Gyan -- You received

Re: [android-developers] Re: Gallery elasticity at the ends

2010-05-12 Thread Gyan
it... Gyan -- 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 more options

Re: [android-developers] Finishing Browser

2010-05-12 Thread Gyan
from the browser Gyan -- 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] Re: WCF complex types with android

2010-05-11 Thread Gyan
ReST+JSON works best In other case, use need to have the classes in the client side as a separate Jar with a separate java project meant for the service consumption -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Photo ACTION_PICK intent returning data not set in setType

2009-10-23 Thread Gyan
from the Intent. Thanks in advance !!! Gyan --~--~-~--~~~---~--~~ 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

[android-developers] Re: Photo ACTION_PICK intent returning data not set in setType

2009-10-23 Thread Gyan
Thanks much that was very precise! On Fri, Oct 23, 2009 at 2:12 PM, Miguel Paraz mpa...@gmail.com wrote: Hi, On Oct 23, 3:08 pm, Gyan gnanesh@gmail.com wrote: I'm using the setType to return me images mentioned only of the specific type. Intent photoPickerIntent = new

[android-developers] Re: Transfer Messages without Service Provider

2009-10-23 Thread Gyan
You can do it in the emulator though... U can link 2 emulators and implement a SMS reciever and achieve this. On Fri, Oct 23, 2009 at 3:03 PM, ragavendran s sraghav.ra...@gmail.comwrote: How to transfer Messages from Android phone to another android phone without Service Provider... Is

[android-developers] Text getting cut-off in a list view

2009-05-06 Thread Gyan
. This happens inconsistently. Is this an existing issue with the framework?? Thanks Gyan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Bug while selecting from a list of multi-select items whilst using filterable

2009-02-23 Thread Gyan
, Contacts.People.DEFAULT_SORT_ORDER); } private ContentResolver mContent; } Any help in this is welcome. Gyan. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Bug while selecting from a list of multi-select items whilst using filterable

2009-02-23 Thread Gyan
: buffer.toString(), args, Contacts.People.DEFAULT_SORT_ORDER); } private ContentResolver mContent; } Any help in this is welcome. Gyan. CONFIDENTIALITY NOTICE: This communication may contain privileged or other confidential information. If you have received it in error, please advise