SwipeRefreshLayout
の唯一の子としてRecyclerView
がありますが、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は、私はすでに 'SwipeRefreshLayout'に' wrap_content'を設定している、あまりにも –
SwipeRefreshLayoutためwrap_contentを試みるが、 'RecyclerView'も' match_parent'です –