<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.electric.chargingpile.fragment.QaZanFragment">
<TextView
android:id="@+id/tv_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/ui_65"
android:textSize="14sp"
android:layout_below="@+id/rl_title"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp"
android:text="您当前还没有动态"
android:visibility="gone"/>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/srl"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:background="@color/white"/>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
|