答案 0 :(得分:1)
使用FrameLayout并将其作为最后一个图像视图添加,并为此视图指定右侧和顶部布局边距,并为底层布局添加一些略大的右边距。
或者RelativeLayout,您可以使用(layout_alignParentRight="true"
)将此视图与父权限对齐,并使用上一示例中的边距。
尝试模拟布局的示例,根据需要调整边距和图像:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#bbbb00"
android:layout_marginRight="2dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#888899"
android:layout_margin="20dp">
</LinearLayout>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginTop="80dp"
android:src="@drawable/test"/>
</FrameLayout>