将按钮放在打开导航抽屉上方

时间:2015-04-09 18:42:52

标签: java android listview navigation drawer

我的主要内容中有一个按钮,当打开导航抽屉和导航抽屉上方时,我希望此按钮保持在同一位置。

我已经尝试在导航抽屉上放置一个边距,但问题是该按钮消失在导航抽屉周围的黑色/透明空间下。

想法?

1 个答案:

答案 0 :(得分:0)

明白你的意思,在你的布局中尝试以下代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.DrawerLayout>
     ...
    </android.support.v4.widget.DrawerLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="Button" />

</RelativeLayout>

在代码伙伴中尝试一些试验和错误,希望它有所帮助。