this little tutorial should show how to manipulate the look of a widget, in this case a checkbox.
Let's start from scratch with a new application.
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <CheckBox android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:text="a checkbox" />
- <CheckBox android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:text="checked checkbox"
- android:checked="true" />
- </LinearLayout>
Parsed in 0.002 seconds, using GeSHi 1.0.8.4
Greetings,
DaRolla



