Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/adherenceclock"
- />
- <nmm.android.adherenceclock.ClockView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- />
- <ImageButton
- android:id="@+id/checkbox"
- android:src="@drawable/box_check"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_x="240px"
- android:layout_y="160px"
- />
- </AbsoluteLayout>
Parsed in 0.003 seconds, using GeSHi 1.0.8.4
What's wrong? Just puting ClockView by itself doesn't work either. Suggestions?

