LibreTube/app/src/main/res/layout/comments_row.xml

153 lines
6.3 KiB
XML
Raw Normal View History

2022-05-08 16:03:01 +05:30
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-07-28 19:41:35 +05:30
xmlns:tools="http://schemas.android.com/tools"
2022-05-08 16:03:01 +05:30
android:layout_width="match_parent"
2022-06-27 22:47:52 +05:30
android:layout_height="wrap_content"
2022-10-12 23:46:35 +05:30
android:background="@drawable/rounded_ripple">
2022-05-08 16:03:01 +05:30
2022-06-05 19:12:51 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-07-04 21:52:21 +05:30
android:layout_marginTop="10dp"
2022-07-11 18:44:09 +05:30
android:animateLayoutChanges="true"
2022-07-04 21:56:14 +05:30
android:orientation="vertical"
2022-07-04 21:52:21 +05:30
android:paddingStart="20dp"
android:paddingEnd="20dp"
2022-07-04 21:42:24 +05:30
app:layout_constraintTop_toTopOf="parent">
2022-05-08 16:03:01 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-07-04 21:52:21 +05:30
android:layout_marginBottom="16dp"
2022-06-27 22:47:52 +05:30
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/commentor_image"
2022-07-11 18:39:01 +05:30
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginEnd="16dp"
app:srcCompat="@mipmap/ic_launcher" />
2022-05-08 16:03:01 +05:30
2022-05-08 17:44:06 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2022-05-08 17:44:06 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2022-05-08 17:44:06 +05:30
<TextView
android:id="@+id/comment_infos"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="2"
android:textSize="15sp"
2022-07-28 19:41:35 +05:30
android:textStyle="bold"
tools:text="Author and Time" />
2022-05-08 17:44:06 +05:30
<ImageView
android:id="@+id/verified_imageView"
android:layout_width="16dp"
android:layout_height="16dp"
2022-07-11 18:39:01 +05:30
android:layout_marginStart="4dp"
2022-06-27 22:47:52 +05:30
android:layout_marginTop="4dp"
android:visibility="gone"
app:srcCompat="@drawable/ic_verified" />
2022-05-08 16:03:01 +05:30
<ImageView
android:id="@+id/pinned_imageView"
android:layout_width="16dp"
android:layout_height="16dp"
2022-07-11 18:39:01 +05:30
android:layout_marginStart="4dp"
2022-06-27 22:47:52 +05:30
android:layout_marginTop="4dp"
android:visibility="gone"
app:srcCompat="@drawable/ic_pinned" />
</LinearLayout>
2022-05-08 16:49:50 +05:30
<TextView
android:id="@+id/comment_text"
android:layout_width="match_parent"
2022-05-08 16:49:50 +05:30
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:autoLink="web"
2022-07-28 19:41:35 +05:30
tools:text="Comment Text" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView
android:id="@+id/likes_imageView"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_marginTop="2dp"
app:srcCompat="@drawable/ic_thumb_up" />
<TextView
android:id="@+id/likes_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-10-17 21:57:05 +05:30
android:layout_marginStart="6dp"
2022-07-28 19:41:35 +05:30
tools:text="LikeCount" />
2022-05-08 16:49:50 +05:30
<ImageView
android:id="@+id/hearted_imageView"
android:layout_width="14dp"
android:layout_height="14dp"
2022-07-11 18:39:01 +05:30
android:layout_marginStart="8dp"
android:layout_marginTop="3dp"
2022-06-27 22:47:52 +05:30
android:visibility="gone"
app:srcCompat="@drawable/ic_hearted" />
2022-10-06 18:05:42 +05:30
<ImageView
2022-10-17 21:57:05 +05:30
android:id="@+id/replies_available"
2022-10-06 18:05:42 +05:30
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_marginStart="8dp"
android:layout_marginTop="3dp"
android:visibility="gone"
app:srcCompat="@drawable/ic_comment" />
2022-10-17 21:57:05 +05:30
<TextView
android:id="@+id/replies_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
tools:text="LikeCount" />
</LinearLayout>
2022-10-06 18:05:42 +05:30
2022-05-08 16:49:50 +05:30
</LinearLayout>
2022-10-06 18:05:42 +05:30
2022-05-08 16:03:01 +05:30
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/replies_recView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-07-04 21:52:21 +05:30
android:background="@null"
android:nestedScrollingEnabled="false" />
2022-05-08 16:03:01 +05:30
2022-10-13 17:40:39 +05:30
<com.google.android.material.button.MaterialButton
android:id="@+id/show_more"
style="@style/Widget.Material3.Button.ElevatedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginVertical="8dp"
android:stateListAnimator="@null"
android:text="@string/show_more"
android:textColor="?android:attr/textColorPrimary"
android:textSize="12sp"
2022-10-17 21:57:05 +05:30
android:visibility="gone"
2022-10-13 17:40:39 +05:30
app:cornerRadius="20dp" />
2022-06-05 19:12:51 +05:30
</LinearLayout>
2022-05-31 11:18:17 +05:30
</androidx.constraintlayout.widget.ConstraintLayout>