我目前正在开发一款允许用户绘图的应用。我想要做的是在我的视图下有一个ImageView,这样你就可以看到它下面的图像视图,但可以在上面的图层上绘制和覆盖图像。我发现很多人遇到这个问题,但他们的解决方案似乎对我的项目不起作用。下面是我的xml布局。我尝试合并并使视图透明,但似乎不起作用。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/testvue" />
</LinearLayout>
<LinearLayout
android:id="@+id/myViewLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.27" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
android:src="@drawable/test" />
<View
android:id="@+id/view1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="46dp"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:paddingLeft="62dp">
<ImageButton
android:id="@+id/button"
android:layout_width="62dp"
android:layout_height="59dp"
android:background="@drawable/image"
android:contentDescription="@string/colour"
android:onClick="onBtnClicked"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
其他所有东西看起来都很好,只是能够看到下面的图像视图。
赞赏任何意见或建议。
由于