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



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

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

想法?

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

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

在代码好友中尝试一些试错,希望它能有所帮助。

相关内容

  • 没有找到相关文章

最新更新