我有一個RecyclerView
作爲SwipeRefreshLayout
的唯一孩子,我想要RecyclerView wrap_content
。當我將它們都設置爲「wrap_content」時,它不起作用。 RecyclerView
與更少的項目也match_parent
。當我刪除SwipeRefreshLayout
時,RecyclerView
將wrap_content
。誰能幫我?我的英語很差,也許你不能理解。任何人都可以幫助我?非常感謝你。SwipeRefreshLayout中的RecyclerView不是「wrap_content」
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container_v"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00ffff">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff00ff">
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.SwipeRefreshLayout>
後的XML代碼plz.and嘗試WRAP_CONTENT爲SwipeRefreshLayout太 –
我已經設置了'SwipeRefreshLayout'到'wrap_content',但'RecyclerView'也是'match_parent' –