Skip to main content

Posts

Showing posts from July, 2012

Android Reference Websites

Reference 1   - http://iserveandroid.blogspot.in/2010/11/using-canvas-to-draw-text-whereve-click.html Reference 2 -    http://iserveandroid.blogspot.in/ Reference 3- http://iserveandroid.blogspot.in/2010/11/using-canvas-to-draw-text-whereve-click.html Reference 4 - http://moorandroid.blogspot.com/ Reference 5- http://developer.android.com/ Reference 6- http://saigeethamn.blogspot.in/ Reference 7- http://www.bogotobogo.com/Android/android.php Reference 8 - http://w2davids.wordpress.com/ Reference 9- http://www.techienjoy.com/Android-interview-questions.php Reference 10- http://myandroidsolutions.blogspot.in/ Referebce 11- http://www.techgig.com/skillpage/Android/ Reference 12- http://blog.blundell-apps.com/ Reference 13- http://www.anddev.org/ Reference 14 -  http://www.androidpeople.com/ Reference 15 - http://www.devdaily.com/java/jwarehouse/android-examples/platforms/android-2/samples/ApiDemos/src/com/example/android/apis/view/index.shtml Reference 1...

Gridview with Custom Dialog

GridView with CustomDialog Here i'm giving example on GridView with Custom Dialog . main.xml:  <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:orientation="vertical" android:background="#449444">     <GridView         android:id="@+id/gridView1"         android:layout_width="fill_parent"         android:layout_height="fill_parent"         android:columnWidth="90dp"         android:numColumns="auto_fit"         android:horizontalSpacing="10dp"         android:verticalSpacing="10dp"         android:stretchMode="columnWidth"         android:gravity="center" >     <...