Display single comment thread when clicking a comment from ViewUserDetailActivity instead of showing all the comments.

This commit is contained in:
Alex Ning
2019-08-15 13:35:25 +08:00
parent 62dc889867
commit 478b85e67b
7 changed files with 204 additions and 75 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/view_all_comments"
android:gravity="center"
android:textColor="@color/colorAccent" />
</LinearLayout>