关于android布局的问题?

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

当RecyclerView外面再加一层 SwipeRefreshLayout的时候
app:layout_behavior="@string/appbar_scrolling_view_behavior"
这句话为什么要放到上一层?变成这样:
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>

为什么要把app:layout_behavior="@string/appbar_scrolling_view_behavior"放到上一层呢?

繁花如伊
浏览 604回答 1
1回答

撒科打诨

因为layout_behavior属于CoordinatorLayout的属性,作用在CoordinatorLayout的子布局,超过作用域自然失效。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android