mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
122 lines
4.4 KiB
XML
122 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:animateLayoutChanges="true"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="12dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/player_title_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="12dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/player_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_weight="1"
|
|
android:maxLines="2"
|
|
android:textSize="18sp"
|
|
tools:text="Video Title" />
|
|
|
|
<ImageView
|
|
android:id="@+id/player_description_arrow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginStart="10dp"
|
|
android:src="@drawable/ic_arrow_down" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/player_views_info"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_weight="1"
|
|
tools:text="10M views - 2 days ago " />
|
|
|
|
<com.github.libretube.ui.views.DrawableTextView
|
|
android:id="@+id/textLike"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="5dp"
|
|
app:drawableStartCompat="@drawable/ic_like"
|
|
app:drawableStartDimen="12dp"
|
|
tools:text="4.2K" />
|
|
|
|
<com.github.libretube.ui.views.DrawableTextView
|
|
android:id="@+id/textDislike"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:drawablePadding="5dp"
|
|
android:visibility="gone"
|
|
app:drawableStartCompat="@drawable/ic_dislike"
|
|
app:drawableStartDimen="12dp"
|
|
tools:text="1.3K" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/desc_linLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="5dp"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:id="@+id/meta_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
android:textSize="14sp"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/player_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
android:textIsSelectable="true"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/additional_video_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
android:textIsSelectable="true"
|
|
android:textSize="14sp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/tags_recycler"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |