Created
May 14, 2016 06:16
-
-
Save Izzur/b7948d78d635c46771482291e6ae7c2d to your computer and use it in GitHub Desktop.
Layout Expandable List View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="wrap_content" | |
android:orientation="vertical" | |
android:padding="8dp" | |
android:background="#000000"> | |
<TextView | |
android:id="@+id/lblListHeader" | |
android:layout_width="fill_parent" | |
android:layout_height="wrap_content" | |
android:paddingLeft="?android:attr/expandableListPreferredItemPaddingLeft" | |
android:textSize="17dp" | |
android:textColor="#f9f93d" /> | |
</LinearLayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="55dip" | |
android:orientation="vertical" > | |
<TextView | |
android:id="@+id/lblListItem" | |
android:layout_width="fill_parent" | |
android:layout_height="wrap_content" | |
android:textSize="17dip" | |
android:paddingTop="5dp" | |
android:paddingBottom="5dp" | |
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment