Showing posts with label System. Show all posts
Showing posts with label System. Show all posts

Monday, 5 November 2012

ActionBar with Search Option and other options in Android.


This is the example showing how to start with ActionBar in android.

1. <a href="http://www.coderzheaven.com/2012/01/28/android-removes-the-need-of-menu-button-from-devices-with-actionbar/" title="ActionBar" target="_blank">Android removes the need of Menu button from devices with ActionBar.</a>

2. <a href="http://www.coderzheaven.com/2012/08/23/start-actionbar-android/" title="ActionBar" target="_blank">How to start with ActionBar in Android?</a>

3. <a href="http://www.coderzheaven.com/2012/09/28/dynamically-adding-removing-toggling-removing-actionbar-tabs-android-part-2/" title="ActionBar" target="_blank">Dynamically Adding, Removing, Toggling and Removing all ActionBar Tabs in Android – Part 2?</a>
 

Read complete post from here..

http://www.coderzheaven.com/2012/10/20/actionbar-search-option-options-android/

Tuesday, 19 June 2012

How to explicitly free memory in android OR Release unwanted memory in Android?


public void freeMemory(){
    System.runFinalization();
    Runtime.getRuntime().gc();
    System.gc();
}

Visit http://www.coderzheaven.com/2012/04/24/explicitly-free-memory-android-release-unwanted-memory-android/ for more information.