カメラのプレビューを表示するアクティビティと、最後に撮影した画像の ImageView があります。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/stitch_preview"
android:layout_width="fill_parent"
android:layout_height="128dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:scaleType="center"
android:visibility="gone"/>
<SurfaceView
android:id="@+id/camera_preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/stitch_preview"/>
現在、ImageView は128dp
高さに固定されています。ImageView で指を下にドラッグして、このビューのサイズを変更できるようにするのは困難です。
色々とヒントを探しているのですが、全てが隠れた景色を引き出すことに繋がっています。既に表示されているビューのサイズを変更する例が見つからないようです。