24 lines
857 B
XML
24 lines
857 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
style="@style/llOutside"
|
|
tools:context=".Fragments.FragmentCates">
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipeLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/mRecyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:nestedScrollingEnabled="false"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="30dp"
|
|
|
|
/>
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
</FrameLayout> |