2016-05-10 4 views
0

私のhaha.xmlレイアウトはandroid.support.design.widget.AppBarLayoutでカバーされましたが、haha.xmlのボタンをAppBarLayoutの下に表示するにはどうすればよいですか? enter image description hereLinearLayoutはAppBarLayoutによってカバーされました

のみhaha​​.xmlレイアウト

enter image description here

PS: activity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="com.example.william.test.MainActivity" 
    tools:showIn="@layout/activity_main"> 
    <android.support.design.widget.AppBarLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:theme="@style/AppTheme.AppBarOverlay"> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       android:background="?attr/colorPrimary" 
       app:popupTheme="@style/AppTheme.PopupOverlay" /> 

     </android.support.design.widget.AppBarLayout> 
     <include layout="@layout/haha" /> 
</android.support.design.widget.CoordinatorLayout> 

haha​​.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@color/red"> 
    <Button 
    android:layout_width="match_parent" 
    android:layout_height="100dp" 
    android:text="按钮不可用1"/> 

</LinearLayout> 
+0

AppBarLayout + LinearLayoutの周りに周囲のレイアウトがないようです。 –

+0

@ cricket_007更新されたactivity_main.xmlにはすべてが含まれています。 –

答えて

0

あなたはこのヘルプ

0

は、以下のことを試してみてくださいLinearLayout

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
...> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical"> 

     <android.support.design.widget.AppBarLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:theme="@style/AppTheme.AppBarOverlay"> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       android:background="?attr/colorPrimary" 
       app:popupTheme="@style/AppTheme.PopupOverlay" /> 

     </android.support.design.widget.AppBarLayout> 
     <include layout="@layout/haha" /> 
    </LinearLayout> 
</android.support.design.widget.CoordinatorLayout> 

希望を使用することができます例えば、UI要素
を配置するLayoutManagerしてAppBarLayouthaha layoutをラップ:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="com.fragments.myapplication.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 
     <include layout="@layout/haha" /> 
    </android.support.design.widget.AppBarLayout> 
    </android.support.design.widget.CoordinatorLayout> 
+0

ありがとうございます。私はactivity_main.xmlを更新しました。実際には、あなたが追加したものが含まれています。 –

関連する問題