<?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_alignParentBottom="true"
android:layout_marginRight="3dp"
android:layout_marginBottom="24dp"
android:layout_toLeftOf="@+id/iv_ask"
android:src="@drawable/chat_share_info_remind" />
<LinearLayout
android:id="@+id/chat_share_info_remindxx"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="24dp"
android:layout_toLeftOf="@+id/iv_ask"
android:gravity="center_vertical"
android:orientation="horizontal"
android:visibility="gone">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/bg_yuan_black">
<TextView
android:id="@+id/chat_share_info"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="分享内容获电币"
android:textColor="@color/white" />
</RelativeLayout>
<ImageView
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_marginLeft="-5dp"
android:alpha="0.5"
android:src="@drawable/app_sanjiao_right" />
</LinearLayout>
<include
android:visibility="gone"
layout="@layout/activity_no_net_img"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
|