如图所示,如何将抽屉布局的关闭按钮朝向外侧弹出半部分

时间:2016-11-07 12:06:29

标签: android

如图所示,如何放置抽屉布局的关闭按钮,将半部分朝外推出:

enter image description here

2 个答案:

答案 0 :(得分:0)

您需要使用像Relativelayout

这样的叠加布局
<RelativeLayout>

    <View
        android:layout_width="16dp"
        android:layout_height="16dp"
        android:layout_marginTop="48dp"(40 is height of view at top plus 8dp is half height of this own view)
        android:marginLeft="8dp" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:marginLeft="16dp">

        <View
            android:layout_width="wrap_content"
            android:layout_height="40dp" />

        <View
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>

</RelativeLayout>

答案 1 :(得分:0)

制作两个不同的水平布局,并根据位置在第一个水平布局中添加箭头按钮。其余的东西加上第二个水平布局。