| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ~ Copyright (c) 2015. Ncomz. All Rights Reserved
- -->
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/llPageRoot"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/color_body_02"
- android:fitsSystemWindows="true"
- android:orientation="vertical">
- <include layout="@layout/app_toolbar"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/swiperefreshlayou"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:visibility="visible">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/rcvList"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:overScrollMode="never"
- android:clipToPadding="false"/>
- </android.support.v4.widget.SwipeRefreshLayout>
- <LinearLayout
- android:id="@+id/llNodata1"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:gravity="center_horizontal"
- android:orientation="vertical"
- android:paddingTop="80dp"
- android:paddingLeft="15dp"
- android:paddingRight="15dp"
- android:visibility="gone">
- <TextView
- android:id="@+id/tvNodataTitle1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:includeFontPadding="false"
- android:text="@string/layout_notice_02"
- android:textColor="@color/color_text_01"
- android:textSize="@dimen/size_font_02"/>
- </LinearLayout>
- </LinearLayout>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="6dp"
- android:layout_alignParentTop="true"
- android:background="@drawable/shadow_top"/>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="7dp"
- android:layout_alignParentBottom="true"
- android:background="@drawable/shadow_bottom"/>
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <View
- style="@style/width_Divider_02"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/color_bg_01"
- android:gravity="center">
- <LinearLayout
- android:id="@+id/llBtn1"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center">
- <TextView
- android:id="@+id/tvBtn1"
- android:text="@string/layout_close"
- style="@style/bottom_button_text_no"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|