工具栏/ AppbarLayout在屏幕外推视图。如何在屏幕范围内保持视图?

时间:2015-11-04 18:11:25

标签: java android android-layout android-fragments android-activity

我先前问了这个问题,但我觉得我措辞不好。我正在Android Studio 1.4中使用提供的选项卡式活动和操作栏选项卡(带有viewpager)默认项目布局,我正在尝试在其中一个选项卡中显示的片段底部显示一个按钮。我的问题是,我的活动中的AppBarLayout / Toolbar正在将部分片段视图推送到屏幕外。这就是我所看到的。

My fragment in the editor with a button aligned with the bottom of its parent relative view.

How this fragment looks when displayed inside the activity on my device.正如你所看到的那样,相对视图中的按钮被渲染出屏幕(我知道因为我可以在按钮下面添加填充,它最终会出现在屏幕上)而且我认为这是由AppBarLayout / Toolbar将它推到那里。

这是我的片段xml。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"
android:layout_height="match_parent"  android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity$PlaceholderFragment">

<TextView android:id="@+id/section_label" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />
</RelativeLayout>

父母活动。

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"     android:id="@+id/main_content"
android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout android:id="@+id/appbar"
    android:layout_width="match_parent" android:layout_height="wrap_content"
    android:paddingTop="@dimen/appbar_padding_top"
    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"
        app:layout_scrollFlags="scroll|enterAlways">

    </android.support.v7.widget.Toolbar>

    <android.support.design.widget.TabLayout android:id="@+id/tabs"
        android:layout_width="match_parent"      android:layout_height="wrap_content" />

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

<android.support.v4.view.ViewPager android:id="@+id/container"
    android:layout_width="match_parent" android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />


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

有谁知道我怎么能阻止这个?

1 个答案:

答案 0 :(得分:3)

这显然是我在我的活动XML中使用的CoordinatorLayout的一个问题,切换到RelativeLayout解决了这个问题。