Есть лэйоут с ImageView и наследником SurfaceView.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rlMain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".BlockerActivity" >
<ImageView
android:id="@+id/ivCenter"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" android:contentDescription="TODO"/>
<com.example.lookatme.SView
android:id="@+id/sView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/ivCenter"
android:layout_alignTop="@+id/ivCenter" />
</RelativeLayout>
Как нетрудно догадаться, ImageView содержит бэкгроундную картинку, а SurfaceView служит для рисования. Вот требуется в определенный момент очистить от нарисованного на канве SurfaceView, но как этого добиться не додумался.