我看到了类似问题的问题,但当我尝试实施他们的回答时,我无法解决我的问题。
正如你可以看到屏幕边界以外的“棍棒”。
这是我的两个xml文件。
Activity.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=".Activities.ScreenActivity">
<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/content_screen" />
</android.support.design.widget.CoordinatorLayout>
content_screen.xml :
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/design_navigation_elevation"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".Activities.ScreenActivity"
tools:showIn="@layout/activity_screen"
android:weightSum="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:layout_gravity="center|top"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="That's it! Press the button to use your gadget!"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="32dp"
android:layout_alignParentLeft="false"
android:layout_alignParentTop="true"
android:layout_alignParentStart="false" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="\u2714"
android:id="@+id/closeAppButton"
android:layout_gravity="center"
android:background="@drawable/button_bg_round"
android:longClickable="false"
android:textSize="64dp"
android:layout_alignParentLeft="false"
android:layout_alignParentTop="false"
android:layout_centerInParent="true"
android:textColor="#06BF60"
android:textStyle="bold" />
</RelativeLayout>
答案 0 :(得分:1)
因为app:layout_behavior="@string/appbar_scrolling_view_behavior"
属性,如果你将删除它然后布局将坚持工具栏。
为避免这种情况,您需要将静态高度设置为相对布局或包含内容!
答案 1 :(得分:0)
我认为问题在于activity_main.xml中的协调器布局有2个子节点 - AppBarLayout和包含的content_screen.xml。 AppBarLayout像往常一样将layout_height属性设置为wrap_content,但问题是 content_screen.xml的layout_height属性,该属性设置为match_parent 。现在因为它是activity_main的子节点,所以content_screen从activity_main获取它的高度,导致它溢出。
对此的解决方案是在activity_main.xml中创建一个CoordinatorLayout的子项,并按照此类似答案here中的建议将AppbarLayout和content_screen包装在其中。
可能有更好的方法,但我认为这可以解决您的问题:
<?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=".Activities.ScreenActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<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/content_screen" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>