diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-07-06 12:38:58 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-07-06 12:38:58 +0000 |
commit | 372f373601ddb0abdc81f732bd6d2b58e67a4dfa (patch) | |
tree | f7e8c5fd401fb9f74bfb609e0d76bc41b496a852 /app/src/main/res/layout/item_rpan_comment.xml | |
parent | 4204ce47737afc3a40e678688c3e168f8f2caa52 (diff) | |
download | infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar.gz infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar.bz2 infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar.lz infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar.xz infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.tar.zst infinity-for-reddit-372f373601ddb0abdc81f732bd6d2b58e67a4dfa.zip |
Show live comments in RPAN broadcasts.
Diffstat (limited to 'app/src/main/res/layout/item_rpan_comment.xml')
-rw-r--r-- | app/src/main/res/layout/item_rpan_comment.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app/src/main/res/layout/item_rpan_comment.xml b/app/src/main/res/layout/item_rpan_comment.xml new file mode 100644 index 00000000..74766a90 --- /dev/null +++ b/app/src/main/res/layout/item_rpan_comment.xml @@ -0,0 +1,38 @@ +<?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:layout_marginTop="8dp" + android:paddingBottom="8dp"> + + <ImageView + android:id="@+id/icon_image_view_item_rpan_comment" + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_gravity="center_vertical" /> + + <LinearLayout + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:layout_marginStart="16dp" + android:layout_marginEnd="0dp" + android:orientation="vertical"> + + <TextView + android:id="@+id/author_text_view_item_rpan_comment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textColor="@color/colorPrimary" /> + + <TextView + android:id="@+id/content_text_view_item_rpan_comment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="4dp" + android:textColor="#FFFFFF" /> + + </LinearLayout> + +</LinearLayout>
\ No newline at end of file |