Skip to main content

Posts

Showing posts from September, 2013

Android -Expandable ListView

 I've discussed the coding snippets of Expandable List view .The Expandable List view is user-friendly and can make the Indication for what it has been group with the help of group item . we now can discuss about that user friendly Expandable list view code-wise , activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     tools:context=".MainActivity" >     <TextView         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_centerHorizontal="true"         android:layout_centerVertical="true"         android:text="@string/hello_world" /> </RelativeLayout> The Group Item de...