2017-01-18 66 views
-1

我是新的導航抽屜。我想創建我的mainactivity佈局,但爲什麼重疊,所以我的主佈局不可見,可以幫助我。感謝您的回答主要佈局與導航抽屜重疊

這是我activity_main.xml中的佈局:

<?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" 
    android:background="@drawable/splashscreen"> 
    <FrameLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Jaakkk" 
      android:textColor="#ffffff" /> 
    </FrameLayout> 
    <include 
     layout="@layout/app_bar_main" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 
    <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" 
     app:menu="@menu/activity_main_drawer" /> 
</android.support.v4.widget.DrawerLayout> 

我該怎麼做才能改變這種狀況?

+0

你做......什麼變化,你想要什麼樣的變化加上這一行...? –

+0

我只想設置textView –

+1

我檢查了它......你的textView出現在NavigationView後面。 –

回答

0

您可以添加layout_marginTop這樣,

<android.support.design.widget.NavigationView 
    android:layout_marginTop="@dimen/abc_action_bar_default_height_material" 
    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" 
    app:menu="@menu/activity_main_drawer" /> 
+0

不,我想編輯MainActivity.java的佈局 –

+0

@DennyKurniawan你的問題是'我如何編輯主佈局導航抽屜',但實際上你想編輯主佈局? –

+0

@SunilSunny我的佈局與我的導航抽屜重疊,你能幫我嗎? –

1

所以,你的問題是抽屜佈局重疊下面的線性佈局。使用

u能在

<android.support.design.widget.NavigationView android:layout_below="@id/drawer_layout" />

+1

不要做出2個答案..只需編輯你的第一個..或包括這一點。 –

+0

我在哪裏添加這個? –

+0

U可以使用波紋管代碼,但 –