2016-12-05 13 views
0

をカバーして私の主な活動は、AppBarLayout内のツールバーがあり、その下に含まれます:含まれるレイアウトは親のレイアウト

<?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.zhephyr.somedaytoday.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/colorPrimaryDark" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

    </android.support.design.widget.AppBarLayout> 

    <include layout="@layout/activity_chrono_tab"/> 

</android.support.design.widget.CoordinatorLayout> 

含まれるレイアウトはViewPagerに接続TabLayoutとRelativeLayoutです:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 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" 
    tools:context=".ChronoSwipeViewActivity" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <LinearLayout 
     android:id="@+id/tabs" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@color/colorVariant" 
     android:weightSum="1"> 

     <android.support.design.widget.TabLayout 
      android:id="@+id/chrono_tabs" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginStart="15dp" 
      android:layout_marginEnd="15dp" 
      app:tabMode="fixed" 
      android:background="@color/colorVariant"/> 
    </LinearLayout> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     app:srcCompat="@android:drawable/ic_dialog_email" 
     android:layout_margin="@dimen/fab_margin" 
     app:fabSize="normal" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentEnd="true"/> 

    <android.support.v4.view.ViewPager 
     android:id="@+id/chrono_pager" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_below="@id/tabs" /> 
</RelativeLayout> 

私は現在実行中の問題は、含まれているレイアウトがメインレイアウトの上に画面全体を埋めるということです。ツールバーはカバーされているため表示されません。私は含まれているレイアウトは、ツールバーの下の領域のみを埋めるようにします。私はapp:layout_behavior="@string/appbar_scrolling_view_behavior"を両方のレイアウトとインクルードなしのインクルードに配置しようとしました。誰が何が起こっているのか知っていますか?

更新

示されているアクティビティはこれです:

main activity

+0

変更アンドロイド 'へご含まれるレイアウトのルートが含ま:CoordinatorLayoutは内部でframeLayoutあるのでlayout_height = "wrap_content"' – codeMagic

+0

を。含まれているレイアウトのmatch_parent属性がその上にあります。 – Vinodh

答えて

0
:このアクティビティは、アプリケーションのタイトル外これ内とで示されるべき

shown activity

含まれるレイアウトのルートを変更する〜android:layout_height="wrap_content"

現在、match_parentです。したがって、画面全体を塗りつぶす親の高さになります。

<include>android:layout_below="@id/toolbar"に追加して、ツールバーの下に配置することもできます。既定では、RelativeLayoutは左上にViewsとなります。このプロパティを追加すると、ツールバーの下に含まれるレイアウトが開始されます。

以下のコードの最後の2行に注意してください。

<RelativeLayout 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" 
    tools:context=".ChronoSwipeViewActivity" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

の主なレイアウトのタグ

<include layout="@layout/activity_chrono_tab" 
    android:layout_below="@id/toolbar"/> 
+0

これを実行しようとすると、 '指定された名前と一致するリソースが見つかりませんでした( 'layout_below'の値 '@ id/toolbar')というエラーが表示されます。 – Michael

+0

ツールバーのレイアウトで上記のように綴られていることを確認してください。 '+'ここに '@ + id/toolbar 'を追加してみることもできますが、そうする必要はありません。それは本当に最善の方法ではありません。多分、あなたのプロジェクトも掃除してみてください。 xmlを変更する際には時にはその必要があります。それでも動作しない場合、私はあなたのXMLファイルを見てみることができます。 – codeMagic

+0

まだ動作しませんでした。詳細を追加するために編集された質問。 – Michael

関連する問題