RecyclerView位于平板电脑设备

时间:2016-06-09 08:28:27

标签: android xml android-recyclerview toolbar android-coordinatorlayout

问题:我在RecyclerView中有一个CoordinatorLayout和一个工具栏。 RecyclerView低于Toolbar但不应该FrameLayout。 我的布局仅适用于智能手机设备,不适用于平板电脑,尽管平板电脑xml只有一个RecyclerView不同。

问题:如何才能实现Toolbar<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout android:id="@+id/maschineCoordinatorLayout" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:fitsSystemWindows="true" xmlns:android="http://schemas.android.com/apk/res/android"> <android.support.design.widget.AppBarLayout android:id="@+id/appBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.ActionBar"> <include android:id="@+id/toolbar_main" layout="@layout/toolbar"></include> </android.support.design.widget.AppBarLayout> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:weightSum="9" android:orientation="horizontal" > <FrameLayout android:id="@+id/maschinelistcontainer" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="3" /> <FrameLayout android:id="@+id/detailreviewcontainer" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="6" /> </LinearLayout> <android.support.design.widget.FloatingActionButton android:id="@+id/fab_download_maschinen" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" android:backgroundTint="@color/colorPrimary" android:src="@android:drawable/ic_dialog_email" app:borderWidth="0dp" app:elevation="@dimen/fab_elevation" app:rippleColor="#00ffff"/> </android.support.design.widget.CoordinatorLayout> 在平板电脑尺寸设备上有一个边框?

注意:我问了一个类似的问题here。不幸的是,该解决方案似乎适用于智能手机设备,而不适用于平板电脑尺寸设备。

activity_mail.xml(sw600dp)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/maschine_fragment"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:clipToPadding="false"
        app:layout_behavior = "@string/appbar_scrolling_view_behavior"
        android:scrollbars="vertical" />

    <include
        android:id="@+id/empty_layout"
        layout="@layout/empty_layout"></include>

</LinearLayout>

进入FrameLayout maschinelistcontainer我放置:

WebGL

enter image description here

1 个答案:

答案 0 :(得分:1)

你可以这样做。将您的activity_mail.xml (sw600dp)更改为以下代码:

<?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"
android:id="@+id/maschineCoordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar">

        <include
            android:id="@+id/toolbar_main"
            layout="@layout/toolbar"></include>

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

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:weightSum="9">

        <FrameLayout
            android:id="@+id/maschinelistcontainer"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="3" />

        <FrameLayout
            android:id="@+id/detailreviewcontainer"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="6" />

    </LinearLayout>
</LinearLayout>


<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab_download_maschinen"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:backgroundTint="@color/colorPrimary"
    android:src="@android:drawable/ic_dialog_email"
    app:borderWidth="0dp"

    app:rippleColor="#00ffff" />