我可以在DrawerLayout中使用SwipeRefreshLayout吗?

时间:2015-04-21 08:46:45

标签: android android-layout navigation-drawer drawerlayout swiperefreshlayout

这两种布局都可以在appcompat支持库7中找到。

我没有得到适当的结果。

我将DrawerLayout作为根布局,然后在其中包含一个错误文本视图。然后是SwipeRefreshLayout

当根布局为FrameLayout时,该textview可见。但是,自从我将根布局更改为DrawerLayout后,可能会出现错误,textview永远不会显示!

我是否正确使用它?

<android.support.v4.widget.DrawerLayout 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:background="@android:color/transparent"
    tools:context="com.timesbuzz.news.MainActivity"
    android:id="@+id/drawer_layout">

    <TextView
        android:id="@+id/errorView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:text="@string/error_view_text"
        android:textSize="30sp" />

    <ProgressBar
        android:id="@+id/loadingView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:indeterminate="true" />

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/contentView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <!-- android.support.v4.view.ViewPager -->
        <fr.castorflex.android.verticalviewpager.VerticalViewPager
            android:id="@+id/viewPager"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </android.support.v4.widget.SwipeRefreshLayout>

    <!-- The navigation drawer -->
    <ListView
        android:id="@+id/navdrawer"
        android:layout_width="200dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:drawSelectorOnTop="false">
    </ListView>
</android.support.v4.widget.DrawerLayout>

2 个答案:

答案 0 :(得分:4)

技巧:

<android.support.v4.widget.DrawerLayout 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:background="@android:color/transparent"
tools:context="com.timesbuzz.news.MainActivity"
android:id="@+id/drawer_layout">

<FrameLayout 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<!-- you need to re-layout your widgets as you want -->
<TextView
    android:id="@+id/errorView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:text="@string/error_view_text"
    android:textSize="30sp" />

<ProgressBar
    android:id="@+id/loadingView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:indeterminate="true" />

<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/contentView"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- android.support.v4.view.ViewPager -->
    <fr.castorflex.android.verticalviewpager.VerticalViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</android.support.v4.widget.SwipeRefreshLayout>
</FrameLayout>

<!-- The navigation drawer -->
<ListView
    android:id="@+id/navdrawer"
    android:layout_width="200dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@android:color/white"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"
    android:drawSelectorOnTop="false">
</ListView>

答案 1 :(得分:1)

添加了FrameLayout作为DrawerLayout的第一个子节点。 并将TextView,ProgressBar,SwipeRefreshLayout添加为该FrameLayout的子级,现在它按预期工作。

我解决了这个问题,同时bharat在评论中提出了相同的技巧。