如何创建带阴影的

时间:2016-02-28 09:20:02

标签: android android-layout view

我需要创建enter image description here之类的视图,此视图的位置将与enter image description here

相同

我正在尝试使用框架布局创建它,但最终失败。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

使用FrameLayout并将其作为最后一个图像视图添加,并为此视图指定右侧和顶部布局边距,并为底层布局添加一些略大的右边距。

或者RelativeLayout,您可以使用(layout_alignParentRight="true")将此视图与父权限对齐,并使用上一示例中的边距。

尝试模拟布局的示例,根据需要调整边距和图像:

This layout displays

<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>