您好我试图将我的内容简单地放在工具栏下面,但是当我运行我的应用程序时,当它应该在它下面时,一些内容隐藏在它后面。
我已经阅读了有关使用框架布局尝试将其分开的信息,但我有点陷入困境。我目前正在使用随软件提供的基本android studio导航抽屉模板,并想知道我必须做出哪些更改。
我的协调员布局
<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">
<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>
我的抽屉布局
import my.package.User
import org.codehaus.groovy.runtime.InvokerHelper;
List allInstances = (List)InvokerHelper.invokeMethod(User.class, "list", null));
User one=(User)InvokerHelper.invokeMethod(User.class, "get", id);
我需要做出哪些改变?
答案 0 :(得分:27)
许多ViewGroups允许他们的孩子重叠。这些包括FrameLayout,RelativeLayout,CoordinatorLayout和DrawerLayout。一个不允许其子项重叠的是LinearLayout。
你的问题的答案实际上取决于最终结果应该是什么。如果你想要一个总是在屏幕上的工具栏和它下面的一些内容,那么你根本不需要CoordinatorLayout和AppBarLayout,你可以使用一个带有两个子节点的垂直LinearLayout:
<LinearLayout android:orientation="vertical" ...>
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
... />
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
... />
</LinearLayout>
注意FrameLayout的布局属性。
如果你想在滚动内容的同时进行工具栏滚动和离开屏幕的花哨的东西,那么你需要一个AppBarLayout,你需要给你的内容区域一个特殊的属性:
<android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
... >
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll"
... />
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/fragment_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 :(得分:14)
app:layout_behavior="@string/appbar_scrolling_view_behavior"
将此代码添加到您的帧代码
答案 2 :(得分:1)
@Brian Hoang和@Karakuri说使用layout_behaviour属性:
app:layout_behavior="@string/appbar_scrolling_view_behavior"
似乎是一个非常好的解决方案。即使您目前没有任何动画,但您计划在将来使用,那么您仍然可以保留CoordinatorLayout和AppBarLayout,以防您以后想要添加动画。
根据我的理解,该属性似乎通常是计算整个AppBarLayout UI组件的高度。无论高度如何,使用带有@ string / appbar_scrolling_view_behaviour的layout_behaviour属性的UI组件将自动显示在AppBarLayout的正下方。
通过这种方式,无需对应该在AppBarLayout下的UI中的任何顶部边距进行硬编码。
在下面的代码中, include_app_bar_with_tabs_layout(AppBarLayout)的固定高度为200dp(可以是wrap_content或其他任何内容)。然后包含屏幕内容的RelativeLayout使用layout_behaviour属性。
查看下面的代码和UI图片:
<?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">
<include
layout="@layout/include_app_bar_with_tabs_layout"
android:layout_width="match_parent"
<!-- this can be anything, even wrap_content -->
android:layout_height="200dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Green"
<!-- this tells it to be below the include_app_bar_with_tabs_layout (AppBarLayout) -->
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/adView" />
<com.google.android.gms.ads.AdView
android:id="@id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
app:adSize="BANNER"
app:adUnitId="@string/banner_ad_unit_id"
tools:background="@color/green"
tools:layout_height="50dp" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>