前回作成したアンドゥ・リドゥ機能をAndroidのアプリに組み込んでみよう。 簡単なドローアプリを作ってみることにする。 画面は以下のような構成とする。 UndoとRedoの二つのボタンがある。背景全体はカスタムビューとなっていて、タッチ&ムーブで 絵を書くことが出来る。 まずはレイアウトのxmlを示す。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <com.lesson.DrawingView