Here is my LinearLayout that contains the ListView:
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- android:id="@+id/layoutEditList"
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <ListView android:id="@+id/viewEditList"
- android:layout_width="fill_parent"
- android:layout_height="250dip"
- android:background="#FFFFFF"
- />
- <LinearLayout
- android:id="@+id/layoutButtons"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:orientation="horizontal"
- >
- <Button
- android:id="@+id/btnEditMembers"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Button"
- android:textSize="13dip"
- >
- </Button>
- <Button
- android:id="@+id/btnEditMembersCancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Cancel"
- android:textSize="13dip"
- >
- </Button>
- </LinearLayout>
- </LinearLayout>
Parsed in 0.004 seconds, using GeSHi 1.0.8.4
and the checkbox layout:
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- android:id="@+id/layoutCheckBox"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- xmlns:android="http://schemas.android.com/apk/res/android"
- >
- <CheckBox
- android:id="@+id/chkboxGroupContactName"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="CheckBox"
- android:textColor="#000000"
- >
- </CheckBox>
- </LinearLayout>
Parsed in 0.002 seconds, using GeSHi 1.0.8.4
Is there a setting for checkbox that i need to do?




