fragment_comments.xml
1.02 KB
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
>
<data>
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="36dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/btn_input"
android:gravity="center"
android:text="@string/input_button_text"
android:textSize="12sp" />
<android.support.v7.widget.RecyclerView
android:layout_below="@+id/input"
android:layout_marginTop="@dimen/_20px"
android:id="@+id/comment_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
</layout>