mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 15:23:00 +00:00 
			
		
		
		
	put fab button on top of video thumbnail
This commit is contained in:
		| @@ -24,7 +24,8 @@ | ||||
|         </activity> | ||||
|         <activity | ||||
|             android:name=".VideoItemDetailActivity" | ||||
|             android:label="@string/title_videoitem_detail" > | ||||
|             android:label="@string/title_videoitem_detail" | ||||
|             android:theme="@style/DetailViewTheme"> | ||||
|             <meta-data | ||||
|                 android:name="android.support.PARENT_ACTIVITY" | ||||
|                 android:value=".VideoItemListActivity" /> | ||||
|   | ||||
| @@ -7,6 +7,7 @@ import android.content.SharedPreferences; | ||||
| import android.content.res.Resources; | ||||
| import android.graphics.Bitmap; | ||||
| import android.graphics.BitmapFactory; | ||||
| import android.graphics.Point; | ||||
| import android.os.Bundle; | ||||
| import android.os.Handler; | ||||
| import android.preference.PreferenceManager; | ||||
| @@ -27,7 +28,6 @@ import android.widget.FrameLayout; | ||||
| import android.widget.ImageView; | ||||
| import android.widget.ProgressBar; | ||||
| import android.widget.RelativeLayout; | ||||
| import android.widget.ScrollView; | ||||
| import android.widget.TextView; | ||||
| import android.view.MenuItem; | ||||
|  | ||||
| @@ -44,6 +44,7 @@ import java.util.Vector; | ||||
| import org.schabi.newpipe.services.VideoExtractor; | ||||
| import org.schabi.newpipe.services.ServiceList; | ||||
| import org.schabi.newpipe.services.StreamingService; | ||||
| import org.schabi.newpipe.views.DetailScrollView; | ||||
|  | ||||
|  | ||||
| /** | ||||
| @@ -84,8 +85,10 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|     private VideoInfo currentVideoInfo = null; | ||||
|     private boolean showNextVideoItem = false; | ||||
|  | ||||
|  | ||||
|     private View thumbnailWindow; | ||||
|     private ImageView thumbnailView; | ||||
|     private View thumbnailWindowLayout; | ||||
|     private FloatingActionButton playVideoButton; | ||||
|     private Point initialThumbnailPos = new Point(0, 0); | ||||
|  | ||||
|     public interface OnInvokeCreateOptionsMenuListener { | ||||
|         void createOptionsMenu(); | ||||
| @@ -225,6 +228,7 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|             Button similarVideosButton = (Button) activity.findViewById(R.id.detailShowSimilarButton); | ||||
|  | ||||
|             textContentLayout.setVisibility(View.VISIBLE); | ||||
|             playVideoButton.setVisibility(View.VISIBLE); | ||||
|             progressBar.setVisibility(View.GONE); | ||||
|             if(!showNextVideoItem) { | ||||
|                 nextVideoRootFrame.setVisibility(View.GONE); | ||||
| @@ -356,8 +360,12 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|     @Override | ||||
|     public void onActivityCreated(Bundle savedInstanceBundle) { | ||||
|         super.onActivityCreated(savedInstanceBundle); | ||||
|         FloatingActionButton playVideoButton = | ||||
|                 (FloatingActionButton) getActivity().findViewById(R.id.playVideoButton); | ||||
|         Activity a = getActivity(); | ||||
|         playVideoButton = | ||||
|                 (FloatingActionButton) a.findViewById(R.id.playVideoButton); | ||||
|         thumbnailWindowLayout = a.findViewById(R.id.detailVideoThumbnailWindowLayout); | ||||
|         Button backgroundButton = (Button) | ||||
|                 a.findViewById(R.id.detailVideoThumbnailWindowBackgroundButton); | ||||
|  | ||||
|         // Sometimes when this fragment is not visible it still gets initiated | ||||
|         // then we must not try to access objects of this fragment. | ||||
| @@ -396,6 +404,13 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|                 } | ||||
|             }); | ||||
|  | ||||
|             backgroundButton.setOnClickListener(new View.OnClickListener() { | ||||
|                 @Override | ||||
|                 public void onClick(View v) { | ||||
|                     actionBarHandler.playVideo(); | ||||
|                 } | ||||
|             }); | ||||
|  | ||||
|             Button similarVideosButton = (Button) activity.findViewById(R.id.detailShowSimilarButton); | ||||
|             similarVideosButton.setOnClickListener(new View.OnClickListener() { | ||||
|                 @Override | ||||
| @@ -411,16 +426,30 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|                 } | ||||
|             }); | ||||
|  | ||||
|             ImageView thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView); | ||||
|             thumbnailWindow = activity.findViewById(R.id.detailVideoThumbnailWindow); | ||||
|             thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView); | ||||
|             thumbnailView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() { | ||||
|                 // This is used to synchronize the thumbnailWindow inside the ScrollView with | ||||
|                 // the actual size of the thumbnail. | ||||
|                 // This is used to synchronize the thumbnailWindowButton and the playVideoButton | ||||
|                 // inside the ScrollView with the actual size of the thumbnail. | ||||
|                 @Override | ||||
|                 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) { | ||||
|                     Log.d(TAG, Integer.toString(right - left) + " : " + Integer.toString(bottom - top)); | ||||
|                     RelativeLayout.LayoutParams newLayoutParams = new RelativeLayout.LayoutParams(right - left, bottom - top); | ||||
|                     thumbnailWindow.setLayoutParams(newLayoutParams); | ||||
|                     RelativeLayout.LayoutParams newWindowLayoutParams = | ||||
|                             (RelativeLayout.LayoutParams) thumbnailWindowLayout.getLayoutParams(); | ||||
|                     newWindowLayoutParams.height = bottom - top; | ||||
|                     thumbnailWindowLayout.setLayoutParams(newWindowLayoutParams); | ||||
|  | ||||
|  | ||||
|                     initialThumbnailPos.set(top, left); | ||||
|  | ||||
|                 } | ||||
|             }); | ||||
|  | ||||
|             DetailScrollView scrollView = (DetailScrollView) activity.findViewById(R.id.detailMainContent); | ||||
|             scrollView.setOnScrollViewListener(new DetailScrollView.OnScrollViewListener() { | ||||
|                 // This is used to make the thumbnailView move half the speed than the content does | ||||
|                 // while scrolling. | ||||
|                 @Override | ||||
|                 public void onScrollChanged(DetailScrollView v, int l, int t, int oldl, int oldt) { | ||||
|                     //Log.d(TAG, Integer.toString(l) + " : " + Integer.toString(t)); | ||||
|                 } | ||||
|             }); | ||||
|         } | ||||
| @@ -433,7 +462,8 @@ public class VideoItemDetailFragment extends Fragment { | ||||
|         String languageKey = getContext().getString(R.string.searchLanguage); | ||||
|         //i know the following line defaults languageCode to "en", but java is picky about uninitialised values | ||||
|         // Schabi: well lint tels me the value is redundant. I'll suppress it for now. | ||||
|         @SuppressWarnings("UnusedAssignment") String languageCode = "en"; | ||||
|         @SuppressWarnings("UnusedAssignment") | ||||
|         String languageCode = "en"; | ||||
|         languageCode = sp.getString(languageKey, "en"); | ||||
|  | ||||
|         if(languageCode.length() == 2) { | ||||
|   | ||||
| @@ -0,0 +1,56 @@ | ||||
| package org.schabi.newpipe.views; | ||||
|  | ||||
| import android.content.Context; | ||||
| import android.util.AttributeSet; | ||||
| import android.widget.ScrollView; | ||||
|  | ||||
| /** | ||||
|  * Created by the-scrabi on 02.12.15. | ||||
|  * | ||||
|  * Copyright (C) Christian Schabesberger 2015 <chris.schabesberger@mailbox.org> | ||||
|  * DetailScrollView.java is part of NewPipe. | ||||
|  * | ||||
|  * NewPipe 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. | ||||
|  * | ||||
|  * NewPipe 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 NewPipe.  If not, see <http://www.gnu.org/licenses/>. | ||||
|  */ | ||||
|  | ||||
| public class DetailScrollView extends ScrollView { | ||||
|  | ||||
|     OnScrollViewListener mOnScrollViewListener = null; | ||||
|  | ||||
|     public DetailScrollView(Context context) { | ||||
|         super(context); | ||||
|     } | ||||
|  | ||||
|     public DetailScrollView(Context context, AttributeSet attrs) { | ||||
|         super(context, attrs); | ||||
|     } | ||||
|  | ||||
|     public DetailScrollView(Context context, AttributeSet attrs, int defStyle) { | ||||
|         super(context, attrs, defStyle); | ||||
|     } | ||||
|  | ||||
|     public interface OnScrollViewListener { | ||||
|         void onScrollChanged( DetailScrollView v, int l, int t, int oldl, int oldt ); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     protected void onScrollChanged(int l, int t, int oldl, int oldt) { | ||||
|         mOnScrollViewListener.onScrollChanged(this, l, t, oldl, oldt); | ||||
|         super.onScrollChanged(l, t, oldl, oldt); | ||||
|     } | ||||
|  | ||||
|     public void setOnScrollViewListener(OnScrollViewListener listener) { | ||||
|         mOnScrollViewListener = listener; | ||||
|     } | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/drawable-nodpi/dummy_thumbnail_dark.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								app/src/main/res/drawable-nodpi/dummy_thumbnail_dark.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 188 B | 
| @@ -1,214 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
|  | ||||
| <RelativeLayout 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" | ||||
|     tools:context=".VideoItemDetailFragment" | ||||
|     android:textIsSelectable="true" | ||||
|     style="?android:attr/textAppearanceLarge" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" | ||||
|     android:id="@+id/videoitem_detail"> | ||||
|  | ||||
|     <ProgressBar android:id="@+id/detailProgressBar" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_centerInParent="true" | ||||
|         android:indeterminate="true"/> | ||||
|  | ||||
|     <ScrollView | ||||
|         android:id="@+id/detailMainContent" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="match_parent" | ||||
|         android:visibility="invisible"> | ||||
|  | ||||
|         <RelativeLayout | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content"> | ||||
|  | ||||
|             <RelativeLayout android:id="@+id/detailVideoInfo" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content"> | ||||
|  | ||||
|                 <ImageView android:id="@+id/detailThumbnailView" | ||||
|                     android:contentDescription="@string/detailThumbnailViewDescription" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:scaleType="centerInside" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:layout_alignParentTop="true" | ||||
|                     android:adjustViewBounds="true" | ||||
|                     android:src="@drawable/dummy_thumbnail"/> | ||||
|  | ||||
|                 <RelativeLayout | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailThumbnailView" | ||||
|                     android:paddingTop="10dp" | ||||
|                     android:paddingBottom="10dp" | ||||
|                     android:paddingRight="10dp" | ||||
|                     android:paddingLeft="10dp"> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailVideoTitleView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:paddingBottom="5dp" | ||||
|                         android:textSize="@dimen/text_video_title_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailUploaderThumbnailView" | ||||
|                         android:contentDescription="@string/detailUploaderThumbnailViewDescription" | ||||
|                         android:layout_width="100dp" | ||||
|                         android:layout_height="100dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:src="@drawable/buddy" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploaderView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderThumbnailView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:textSize="@dimen/text_video_uploader_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailViewCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:paddingBottom="5dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_views_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsDownCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_like_land_size" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsDownImgView" | ||||
|                         android:contentDescription="@string/detailThumbsDownImgViewDescription" | ||||
|                         android:layout_width="40dp" | ||||
|                         android:layout_height="20dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownCountView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:src="@drawable/thumbs_down" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsUpCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownImgView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownImgView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textSize="@dimen/text_video_like_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsUpImgView" | ||||
|                         android:contentDescription="@string/detailThumbsUpImgViewDescription" | ||||
|                         android:layout_width="40dp" | ||||
|                         android:layout_height="20dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsUpCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsUpImgView" | ||||
|                         android:src="@drawable/thumbs_up" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploadDateView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_upload_date_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailDescriptionView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploadDateView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_description_land_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                 </RelativeLayout> | ||||
|             </RelativeLayout> | ||||
|             <RelativeLayout android:id="@+id/detailNextVideoRootLayout" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:layout_below="@id/detailVideoInfo" > | ||||
|  | ||||
|                 <TextView android:id="@+id/detailNextVideoTitle" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:paddingLeft="6dp" | ||||
|                     android:paddingRight="6dp" | ||||
|                     android:paddingTop="20dp" | ||||
|                     android:paddingBottom="6dp" | ||||
|                     android:textAppearance="?android:attr/textAppearanceMedium" | ||||
|                     android:textColor="@android:color/black" | ||||
|                     android:text="@string/nextVideoTitle" | ||||
|                     /> | ||||
|  | ||||
|                 <RelativeLayout android:id="@+id/detailNextVidButtonAndContantLayout" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailNextVideoTitle"> | ||||
|                     <FrameLayout | ||||
|                         android:id="@+id/detailNextVideoFrame" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="wrap_content"/> | ||||
|                     <Button | ||||
|                         android:id="@+id/detailNextVideoButton" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="match_parent" | ||||
|                         android:layout_alignTop="@id/detailNextVideoFrame" | ||||
|                         android:layout_alignBottom="@id/detailNextVideoFrame" | ||||
|                         android:background="?attr/selectableItemBackground"/> | ||||
|                 </RelativeLayout> | ||||
|  | ||||
|             </RelativeLayout> | ||||
|  | ||||
|             <Button android:id="@+id/detailShowSimilarButton" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:layout_marginLeft="6dp" | ||||
|                 android:layout_marginRight="6dp" | ||||
|                 android:layout_below="@id/detailNextVideoRootLayout" | ||||
|                 android:text="@string/showSimilarVideosButtonText"/> | ||||
|         </RelativeLayout> | ||||
|     </ScrollView> | ||||
|  | ||||
|     <android.support.design.widget.FloatingActionButton | ||||
|         android:id="@+id/playVideoButton" | ||||
|         android:layout_alignParentRight="true" | ||||
|         android:layout_alignParentEnd="true" | ||||
|         android:layout_alignParentBottom="true" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         app:backgroundTint="@color/primaryColorYoutube" | ||||
|         android:src="@drawable/ic_play_arrow_black" | ||||
|         android:layout_margin="16dip"/> | ||||
| </RelativeLayout> | ||||
| @@ -1,213 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
|  | ||||
| <RelativeLayout 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" | ||||
|     tools:context=".VideoItemDetailFragment" | ||||
|     android:textIsSelectable="true" | ||||
|     style="?android:attr/textAppearanceLarge" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" | ||||
|     android:id="@+id/videoitem_detail"> | ||||
|  | ||||
|     <ProgressBar android:id="@+id/detailProgressBar" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_centerInParent="true" | ||||
|         android:indeterminate="true"/> | ||||
|  | ||||
|     <ScrollView | ||||
|         android:id="@+id/detailMainContent" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="match_parent" | ||||
|         android:visibility="invisible"> | ||||
|  | ||||
|         <RelativeLayout | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content"> | ||||
|  | ||||
|             <RelativeLayout android:id="@+id/detailVideoInfo" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content"> | ||||
|  | ||||
|                 <ImageView android:id="@+id/detailThumbnailView" | ||||
|                     android:contentDescription="@string/detailThumbnailViewDescription" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:scaleType="centerInside" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:layout_alignParentTop="true" | ||||
|                     android:adjustViewBounds="true" | ||||
|                     android:src="@drawable/dummy_thumbnail"/> | ||||
|  | ||||
|                 <RelativeLayout | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailThumbnailView" | ||||
|                     android:paddingTop="10dp" | ||||
|                     android:paddingBottom="10dp" | ||||
|                     android:paddingRight="10dp" | ||||
|                     android:paddingLeft="10dp"> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailVideoTitleView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:paddingBottom="5dp" | ||||
|                         android:textSize="@dimen/text_video_title_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailUploaderThumbnailView" | ||||
|                         android:contentDescription="@string/detailUploaderThumbnailViewDescription" | ||||
|                         android:layout_width="100dp" | ||||
|                         android:layout_height="100dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:src="@drawable/buddy" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploaderView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderThumbnailView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:textSize="@dimen/text_video_uploader_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailViewCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:paddingBottom="5dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_views_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsDownCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_like_sw600dp_size" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium"/> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsDownImgView" | ||||
|                         android:contentDescription="@string/detailThumbsDownImgViewDescription" | ||||
|                         android:layout_width="40dp" | ||||
|                         android:layout_height="20dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownCountView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:src="@drawable/thumbs_down" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsUpCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownImgView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownImgView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textSize="@dimen/text_video_like_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsUpImgView" | ||||
|                         android:contentDescription="@string/detailThumbsUpImgViewDescription" | ||||
|                         android:layout_width="40dp" | ||||
|                         android:layout_height="20dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsUpCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsUpImgView" | ||||
|                         android:src="@drawable/thumbs_up" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploadDateView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_upload_date_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailDescriptionView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploadDateView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_description_sw600dp_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                 </RelativeLayout> | ||||
|             </RelativeLayout> | ||||
|             <RelativeLayout android:id="@+id/detailNextVideoRootLayout" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:layout_below="@id/detailVideoInfo" > | ||||
|  | ||||
|                 <TextView android:id="@+id/detailNextVideoTitle" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:paddingLeft="6dp" | ||||
|                     android:paddingRight="6dp" | ||||
|                     android:paddingTop="20dp" | ||||
|                     android:paddingBottom="6dp" | ||||
|                     android:textAppearance="?android:attr/textAppearanceMedium" | ||||
|                     android:textColor="@android:color/black" | ||||
|                     android:text="@string/nextVideoTitle" | ||||
|                     /> | ||||
|  | ||||
|                 <RelativeLayout android:id="@+id/detailNextVidButtonAndContantLayout" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailNextVideoTitle"> | ||||
|                     <FrameLayout | ||||
|                         android:id="@+id/detailNextVideoFrame" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="wrap_content"/> | ||||
|                     <Button | ||||
|                         android:id="@+id/detailNextVideoButton" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="match_parent" | ||||
|                         android:layout_alignTop="@id/detailNextVideoFrame" | ||||
|                         android:layout_alignBottom="@id/detailNextVideoFrame" | ||||
|                         android:background="?attr/selectableItemBackground"/> | ||||
|                 </RelativeLayout> | ||||
|  | ||||
|             </RelativeLayout> | ||||
|             <Button android:id="@+id/detailShowSimilarButton" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:layout_marginLeft="6dp" | ||||
|                 android:layout_marginRight="6dp" | ||||
|                 android:layout_below="@id/detailNextVideoRootLayout" | ||||
|                 android:text="@string/showSimilarVideosButtonText"/> | ||||
|         </RelativeLayout> | ||||
|     </ScrollView> | ||||
|  | ||||
|     <android.support.design.widget.FloatingActionButton | ||||
|         android:id="@+id/playVideoButton" | ||||
|         android:layout_alignParentRight="true" | ||||
|         android:layout_alignParentEnd="true" | ||||
|         android:layout_alignParentBottom="true" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         app:backgroundTint="@color/primaryColorYoutube" | ||||
|         android:src="@drawable/ic_play_arrow_black" | ||||
|         android:layout_margin="16dip"/> | ||||
| </RelativeLayout> | ||||
| @@ -21,15 +21,16 @@ | ||||
|         android:contentDescription="@string/detailThumbnailViewDescription" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:scaleType="centerInside" | ||||
|         android:scaleType="fitCenter" | ||||
|         android:adjustViewBounds="true" | ||||
|         android:layout_alignParentLeft="true" | ||||
|         android:layout_alignParentStart="true" | ||||
|         android:layout_alignParentTop="true" | ||||
|         android:adjustViewBounds="true" | ||||
|         android:background="@android:color/black" | ||||
|         android:src="@drawable/dummy_thumbnail"/> | ||||
|         android:src="@drawable/dummy_thumbnail_dark"/> | ||||
|  | ||||
|     <ScrollView | ||||
|  | ||||
|     <org.schabi.newpipe.views.DetailScrollView | ||||
|         android:id="@+id/detailMainContent" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="match_parent" | ||||
| @@ -39,184 +40,186 @@ | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content"> | ||||
|  | ||||
|             <RelativeLayout android:id="@+id/detailVideoInfo" | ||||
|             <RelativeLayout | ||||
|                 android:id="@+id/detailVideoThumbnailWindowLayout" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content"> | ||||
|                 android:layout_height="250dp" | ||||
|                 android:background="?attr/selectableItemBackground"> | ||||
|  | ||||
|                 <View android:id="@+id/detailVideoThumbnailWindow" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="250dp" | ||||
|                     android:background="@android:color/transparent" /> | ||||
|  | ||||
|                 <RelativeLayout android:id="@+id/detailTextContentLayout" | ||||
|                 <android.support.design.widget.FloatingActionButton | ||||
|                     android:id="@+id/playVideoButton" | ||||
|                     android:visibility="invisible" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_width="wrap_content" | ||||
|  | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailVideoThumbnailWindow" | ||||
|                     android:paddingTop="5dp" | ||||
|                     android:paddingBottom="5dp" | ||||
|                     android:layout_centerInParent="true" | ||||
|                     app:backgroundTint="@color/primaryColorYoutube" | ||||
|                     android:src="@drawable/ic_play_arrow_black" | ||||
|                     android:layout_margin="20dp"/> | ||||
|  | ||||
|                 <Button | ||||
|                     android:id="@+id/detailVideoThumbnailWindowBackgroundButton" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="match_parent" | ||||
|                     android:background="?attr/selectableItemBackground"/> | ||||
|  | ||||
|             </RelativeLayout> | ||||
|  | ||||
|             <RelativeLayout android:id="@+id/detailTextContentLayout" | ||||
|                 android:visibility="invisible" | ||||
|                 android:layout_width="match_parent" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:paddingTop="5dp" | ||||
|                 android:paddingBottom="5dp" | ||||
|                 android:paddingRight="5dp" | ||||
|                 android:paddingLeft="5dp" | ||||
|                 android:layout_below="@id/detailVideoThumbnailWindowLayout" | ||||
|                 android:background="@color/background_gray"> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailVideoTitleView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:textStyle="bold" | ||||
|                     android:paddingBottom="3dp" | ||||
|                     android:textSize="@dimen/text_video_title_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                 <ImageView android:id="@+id/detailUploaderThumbnailView" | ||||
|                     android:contentDescription="@string/detailUploaderThumbnailViewDescription" | ||||
|                     android:layout_width="80dp" | ||||
|                     android:layout_height="80dp" | ||||
|                     android:layout_below="@id/detailVideoTitleView" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:src="@drawable/buddy" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailUploaderView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailUploaderThumbnailView" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:textStyle="bold" | ||||
|                     android:textSize="@dimen/text_video_uploader_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailViewCountView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:paddingBottom="3dp" | ||||
|                     android:layout_below="@id/detailVideoTitleView" | ||||
|                     android:layout_alignParentRight="true" | ||||
|                     android:layout_alignParentEnd="true" | ||||
|                     android:textSize="@dimen/text_video_views_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailThumbsDownCountView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailViewCountView" | ||||
|                     android:layout_alignParentRight="true" | ||||
|                     android:layout_alignParentEnd="true" | ||||
|                     android:textSize="@dimen/text_video_like_size" | ||||
|                     android:paddingRight="5dp" | ||||
|                     android:paddingLeft="5dp" | ||||
|                     android:background="@color/background_gray"> | ||||
|                     android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailVideoTitleView" | ||||
|                 <ImageView android:id="@+id/detailThumbsDownImgView" | ||||
|                     android:contentDescription="@string/detailThumbsDownImgViewDescription" | ||||
|                     android:layout_width="30dp" | ||||
|                     android:layout_height="15dp" | ||||
|                     android:layout_below="@id/detailViewCountView" | ||||
|                     android:layout_toLeftOf="@id/detailThumbsDownCountView" | ||||
|                     android:layout_toStartOf="@id/detailThumbsDownCountView" | ||||
|                     android:paddingRight="5dp" | ||||
|                     android:paddingLeft="5dp" | ||||
|                     android:src="@drawable/thumbs_down" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailThumbsUpCountView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailViewCountView" | ||||
|                     android:layout_toLeftOf="@id/detailThumbsDownImgView" | ||||
|                     android:layout_toStartOf="@id/detailThumbsDownImgView" | ||||
|                     android:paddingRight="5dp" | ||||
|                     android:paddingLeft="5dp" | ||||
|                     android:textSize="@dimen/text_video_like_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceMedium"/> | ||||
|  | ||||
|                 <ImageView android:id="@+id/detailThumbsUpImgView" | ||||
|                     android:contentDescription="@string/detailThumbsUpImgViewDescription" | ||||
|                     android:layout_width="30dp" | ||||
|                     android:layout_height="15dp" | ||||
|                     android:layout_below="@id/detailViewCountView" | ||||
|                     android:layout_toLeftOf="@id/detailThumbsUpCountView" | ||||
|                     android:layout_toStartOf="@id/detailThumbsUpImgView" | ||||
|                     android:paddingRight="5dp" | ||||
|                     android:paddingLeft="5dp" | ||||
|                     android:src="@drawable/thumbs_up" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailUploadDateView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailUploaderView" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:textSize="@dimen/text_video_upload_date_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                 <TextView android:id="@+id/detailDescriptionView" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_below="@id/detailUploadDateView" | ||||
|                     android:layout_alignParentLeft="true" | ||||
|                     android:layout_alignParentStart="true" | ||||
|                     android:textSize="@dimen/text_video_description_size" | ||||
|                     android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|  | ||||
|                 <RelativeLayout | ||||
|                     android:id="@+id/detailNextVideoRootLayout" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:paddingTop="10dp" | ||||
|                     android:paddingBottom="10dp" | ||||
|                     android:paddingLeft="5dp" | ||||
|                     android:paddingRight="5dp" | ||||
|                     android:layout_below="@id/detailDescriptionView" > | ||||
|  | ||||
|                     <TextView android:id="@+id/detailNextVideoTitle" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:paddingBottom="3dp" | ||||
|                         android:textSize="@dimen/text_video_title_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge"/> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailUploaderThumbnailView" | ||||
|                         android:contentDescription="@string/detailUploaderThumbnailViewDescription" | ||||
|                         android:layout_width="80dp" | ||||
|                         android:layout_height="80dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:src="@drawable/buddy" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploaderView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderThumbnailView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textStyle="bold" | ||||
|                         android:textSize="@dimen/text_video_uploader_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailViewCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:paddingBottom="3dp" | ||||
|                         android:layout_below="@id/detailVideoTitleView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_views_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsDownCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_alignParentRight="true" | ||||
|                         android:layout_alignParentEnd="true" | ||||
|                         android:textSize="@dimen/text_video_like_size" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsDownImgView" | ||||
|                         android:contentDescription="@string/detailThumbsDownImgViewDescription" | ||||
|                         android:layout_width="30dp" | ||||
|                         android:layout_height="15dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownCountView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:src="@drawable/thumbs_down" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailThumbsUpCountView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsDownImgView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsDownImgView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:textSize="@dimen/text_video_like_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium"/> | ||||
|  | ||||
|                     <ImageView android:id="@+id/detailThumbsUpImgView" | ||||
|                         android:contentDescription="@string/detailThumbsUpImgViewDescription" | ||||
|                         android:layout_width="30dp" | ||||
|                         android:layout_height="15dp" | ||||
|                         android:layout_below="@id/detailViewCountView" | ||||
|                         android:layout_toLeftOf="@id/detailThumbsUpCountView" | ||||
|                         android:layout_toStartOf="@id/detailThumbsUpImgView" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:src="@drawable/thumbs_up" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailUploadDateView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploaderView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_upload_date_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceLarge" /> | ||||
|  | ||||
|                     <TextView android:id="@+id/detailDescriptionView" | ||||
|                         android:layout_width="wrap_content" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_below="@id/detailUploadDateView" | ||||
|                         android:layout_alignParentLeft="true" | ||||
|                         android:layout_alignParentStart="true" | ||||
|                         android:textSize="@dimen/text_video_description_size" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" /> | ||||
|  | ||||
|  | ||||
|                     <RelativeLayout | ||||
|                         android:id="@+id/detailNextVideoRootLayout" | ||||
|                         android:textAppearance="?android:attr/textAppearanceMedium" | ||||
|                         android:textColor="@android:color/black" | ||||
|                         android:text="@string/nextVideoTitle" | ||||
|                         /> | ||||
|                     <FrameLayout | ||||
|                         android:id="@+id/detailNextVideoFrame" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:paddingTop="10dp" | ||||
|                         android:paddingBottom="10dp" | ||||
|                         android:paddingLeft="5dp" | ||||
|                         android:paddingRight="5dp" | ||||
|                         android:layout_below="@id/detailDescriptionView" > | ||||
|  | ||||
|                         <TextView android:id="@+id/detailNextVideoTitle" | ||||
|                             android:layout_width="wrap_content" | ||||
|                             android:layout_height="wrap_content" | ||||
|                             android:layout_alignParentLeft="true" | ||||
|                             android:layout_alignParentStart="true" | ||||
|                             android:textSize="@dimen/text_video_upload_date_size" | ||||
|                             android:textAppearance="?android:attr/textAppearanceMedium" | ||||
|                             android:textColor="@android:color/black" | ||||
|                             android:text="@string/nextVideoTitle" | ||||
|                             /> | ||||
|                         <FrameLayout | ||||
|                             android:id="@+id/detailNextVideoFrame" | ||||
|                             android:layout_width="match_parent" | ||||
|                             android:layout_height="wrap_content" | ||||
|                             android:layout_below="@id/detailNextVideoTitle"/> | ||||
|                         <Button | ||||
|                             android:id="@+id/detailNextVideoButton" | ||||
|                             android:layout_width="match_parent" | ||||
|                             android:layout_height="match_parent" | ||||
|                             android:layout_alignTop="@id/detailNextVideoFrame" | ||||
|                             android:layout_alignBottom="@id/detailNextVideoFrame" | ||||
|                             android:background="?attr/selectableItemBackground"/> | ||||
|                     </RelativeLayout> | ||||
|  | ||||
|                     <Button android:id="@+id/detailShowSimilarButton" | ||||
|                         android:layout_below="@id/detailNextVideoTitle"/> | ||||
|                     <Button | ||||
|                         android:id="@+id/detailNextVideoButton" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="wrap_content" | ||||
|                         android:layout_marginLeft="6dp" | ||||
|                         android:layout_marginRight="6dp" | ||||
|                         android:layout_below="@id/detailNextVideoRootLayout" | ||||
|                         android:text="@string/showSimilarVideosButtonText"/> | ||||
|  | ||||
|                         android:layout_height="match_parent" | ||||
|                         android:layout_alignTop="@id/detailNextVideoFrame" | ||||
|                         android:layout_alignBottom="@id/detailNextVideoFrame" | ||||
|                         android:background="?attr/selectableItemBackground"/> | ||||
|                 </RelativeLayout> | ||||
|  | ||||
|                 <Button android:id="@+id/detailShowSimilarButton" | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_marginLeft="6dp" | ||||
|                     android:layout_marginRight="6dp" | ||||
|                     android:layout_below="@id/detailNextVideoRootLayout" | ||||
|                     android:text="@string/showSimilarVideosButtonText"/> | ||||
|             </RelativeLayout> | ||||
|         </RelativeLayout> | ||||
|     </ScrollView> | ||||
|  | ||||
|     <android.support.design.widget.FloatingActionButton | ||||
|         android:id="@+id/playVideoButton" | ||||
|         android:visibility="visible" | ||||
|         android:layout_alignParentBottom="true" | ||||
|         android:layout_centerHorizontal="true" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         app:backgroundTint="@color/primaryColorYoutube" | ||||
|         android:src="@drawable/ic_play_arrow_black" | ||||
|         android:layout_margin="20dp"/> | ||||
|  | ||||
|     </org.schabi.newpipe.views.DetailScrollView> | ||||
| </RelativeLayout> | ||||
| @@ -9,6 +9,11 @@ | ||||
|         <item name="android:colorAccent">@color/accentColorYoutube</item> | ||||
|     </style> | ||||
|  | ||||
|     <style name="DetailViewTheme" parent="AppTheme" > | ||||
|         <item name="colorAccent">@color/primaryColorDarkYoutube</item> | ||||
|         <item name="android:colorAccent">@color/primaryColorDarkYoutube</item> | ||||
|     </style> | ||||
|  | ||||
|     <style name="NewPipeActionbarTheme" parent="Widget.AppCompat.Light.ActionBar.Solid" > | ||||
|         <item name="android:displayOptions">showHome</item> | ||||
|         <item name="displayOptions">showHome</item> | ||||
|   | ||||
| @@ -8,6 +8,10 @@ | ||||
|         <item name="colorAccent">@color/accentColorYoutube</item> | ||||
|     </style> | ||||
|  | ||||
|     <style name="DetailViewTheme" parent="AppTheme" > | ||||
|         <item name="colorAccent">@color/primaryColorDarkYoutube</item> | ||||
|     </style> | ||||
|  | ||||
|     <style name="NewPipeActionbarTheme" parent="Widget.AppCompat.Light.ActionBar.Solid" > | ||||
|         <item name="android:displayOptions">showHome</item> | ||||
|         <item name="displayOptions">showHome</item> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Christian Schabesberger
					Christian Schabesberger