30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
style="@style/llOutside"
|
|
android:orientation="vertical"
|
|
tools:context=".Fragments.FragmentCates">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/banner_container"
|
|
android:layout_height="@dimen/topBannerHeight"
|
|
style="@style/frmBannerContainer" />
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipeLayout"
|
|
android:layout_weight="1"
|
|
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>
|
|
|
|
</LinearLayout> |