来自Activity的菜单没有溢出片段

时间:2017-02-04 13:12:14

标签: android android-layout android-fragments

问题:我创建了包含Drawer和FrameLayout的Activity,它将被碎片夸大。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">


    <FrameLayout
        android:id="@+id/main_fragment_panel"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <!-- The navigation drawer -->
    <RelativeLayout
        android:layout_width="200dp"
        android:layout_height="match_parent"
        android:id="@id/drawerPanel"
        android:layout_gravity="start"
        android:background="@color/backgroundColor">

        <-- CONTENT->>
    </RelativeLayout>





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

将片段更改/膨胀到FrameLayout main_fragment_panel 后,抽屉应该打开(日志中的所有内容看起来都很好),但看起来片段溢出了活动中的所有内容。如何更改&#34;级别&#34;或者&#34;优先级&#34;布局?
更新:我已更新上述代码 - 它现在正常显示但未处理来自&lt; - CONTENT - &gt;的任何事件。 (那里有一些带有听众的按钮)

3 个答案:

答案 0 :(得分:1)

尝试类似的事情,

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

    <fragment
        android:id="@+id/right_drawer"
        android:name="com.fragments.RightFragment"//your left fragment
        android:layout_width="@dimen/drawer_width"
        android:layout_height="fill_parent"
        android:layout_gravity="left" />
</android.support.v4.widget.DrawerLayout>

答案 1 :(得分:1)

您应该使用DrawerLayout作为父布局。以下是修订后的代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

     <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></FrameLayout>


    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        android:background="@color/background_material_dark"
        app:itemTextColor="@color/colorWhite"
        app:menu="@menu/activity_main_drawer" />

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

答案 2 :(得分:1)

您的抽屉布局应如下所示;

FragmentTransaction.replace(R.id.content_frame, fragment, tag); 

现在替换片段使用:

rhumbDestinationPoint