-1
嗨,我嘗試添加Button
上述Recyclerview
但不工作:如何添加上述recyclerview按鈕
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#008080"
tools:context=".fragmentUsers">
<!-- TODO: Update blank fragment layout -->
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send us"
android:layout_above="@+id/rc"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/rc"
android:numColumns="2"
android:scrollbars="vertical"
android:layout_marginTop="2dp"
android:layout_above="@+id/adView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:id="@+id/loadingtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:gravity="center"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="txt"/>
</RelativeLayout>