我的RelativeLayout里面有类似的东西:
<ImageView android:id="@+id/picture"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:src="@drawable/pic"/>
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black"
android:orientation="vertical">
<ImageView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="50dp"
android:background="@color/transparent"
android:id="@+id/ivSelection"/>
</LinearLayout>
我希望 LinearLayout 是黑色的,而 ivSelection 是透明的;并通过 ivSelection 我想看到 ivPicture 的图像。ivSelection 的边距是可变的,当然,这个“窗口”也必须是可变的(可调整大小的)。类似的东西:http: //img818.imageshack.us/img818/8382/selm.jpg
可能吗?