<?xml version="1.0" encoding="utf-8"?>
<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">
<com.andview.refreshview.XRefreshView
android:id="@+id/chat_x_refresh_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_test_rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</com.andview.refreshview.XRefreshView>
<ImageView
android:id="@+id/iv_ask"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="15dp"
android:layout_marginBottom="22dp"
android:src="@drawable/app_share_talk_icon" />
<ImageView
android:id="@+id/chat_share_info_remind"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/iv_ask"
android:layout_alignBottom="@+id/iv_ask"
android:layout_marginRight="3dp"
android:layout_toLeftOf="@+id/iv_ask"
android:src="@drawable/chat_share_info_remind" />
<include
layout="@layout/activity_no_net_img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</RelativeLayout>
|