mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-10-05 21:39:50 +02:00
Display single comment thread when clicking a comment from ViewUserDetailActivity instead of showing all the comments.
This commit is contained in:
17
app/src/main/res/layout/item_view_all_comments.xml
Normal file
17
app/src/main/res/layout/item_view_all_comments.xml
Normal 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>
|
@@ -217,6 +217,5 @@
|
||||
<string name="edit_flair">Edit Flair</string>
|
||||
<string name="only_allow_64_chars">Only allow less than 64 characters</string>
|
||||
|
||||
<!-- TODO: Remove or change this placeholder text -->
|
||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
||||
<string name="view_all_comments">Click here to browse all comments</string>
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user