2018-10-14 15:20:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright 2018 Thomas Schneider
|
|
|
|
|
|
|
|
This file is a part of Mastalab
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with Mastalab; if not,
|
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".activities.PeertubeActivity">
|
2018-10-14 16:17:25 +02:00
|
|
|
|
2018-10-17 11:32:16 +02:00
|
|
|
<LinearLayout
|
2018-10-14 16:17:25 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-10-17 11:32:16 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
|
|
|
<VideoView
|
|
|
|
android:id="@+id/media_video"
|
2018-10-20 14:58:44 +02:00
|
|
|
android:layout_centerInParent="true"
|
2018-10-17 11:32:16 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
<!-- Main Loader -->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/loader"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
>
|
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/peertube_information_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="2">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:id="@+id/peertube_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_view_count"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_visibility_peertube"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:text="0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_like_count"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_thumb_up_peertube"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:text="0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_dislike_count"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_thumb_down_peertube"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:text="0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="HardcodedText" />
|
2018-10-21 18:43:57 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_bookmark"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_bookmark_peertube_border"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:text=""
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
2018-10-17 11:32:16 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="UselessLeaf" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_share"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_share_peertube"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:text="@string/more_action_6"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/peertube_download"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:drawableTop="@drawable/ic_cloud_download_peertube"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:text="@string/download"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/peertube_description"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/peertube_comments"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/no_action"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
|
|
android:padding="10dp"
|
2018-10-20 15:16:57 +02:00
|
|
|
android:id="@+id/no_action_text"
|
2018-10-17 11:32:16 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="25sp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:textStyle="italic|bold"
|
|
|
|
android:typeface="serif"
|
|
|
|
android:text="@string/no_comments"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2018-10-14 15:20:05 +02:00
|
|
|
</android.support.constraint.ConstraintLayout>
|