Advertisement
tifaout

item_movie_detail.xml

Nov 10th, 2023
1,213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 43.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <layout xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:android="http://schemas.android.com/apk/res/android"
  5.    xmlns:tools="http://schemas.android.com/tools">
  6.  
  7.  
  8.     <androidx.constraintlayout.widget.ConstraintLayout
  9.        android:id="@+id/constraintLayout"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent"
  12.        android:background="@color/fragment_content_detail_overlay_end"
  13.        android:orientation="vertical">
  14.  
  15.         <com.google.android.material.appbar.AppBarLayout
  16.            android:id="@+id/appbar"
  17.            android:layout_width="match_parent"
  18.            android:layout_height="wrap_content"
  19.            android:background="@color/transparent"
  20.            android:translationZ="0dp"
  21.            app:layout_constraintTop_toTopOf="parent"
  22.            app:elevation="0dp">
  23.  
  24.             <androidx.appcompat.widget.Toolbar
  25.                android:id="@+id/toolbar"
  26.                android:layout_width="match_parent"
  27.                android:layout_height="?attr/actionBarSize"
  28.                app:contentInsetStartWithNavigation="0dp"
  29.                app:layout_scrollFlags="scroll|enterAlways"
  30.                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
  31.                app:theme="@style/Toolbar.Light">
  32.  
  33.  
  34.                 <LinearLayout
  35.                    android:id="@+id/MoreOptionsLinear"
  36.                    android:orientation="horizontal"
  37.                    android:layout_width="50dp"
  38.                    android:layout_height="50dp"
  39.                    android:background="@drawable/selected_white_login"
  40.                    android:focusable="true"
  41.                    android:gravity="center">
  42.  
  43.                     <ImageView
  44.                        android:id="@+id/backbutton"
  45.                        android:layout_width="wrap_content"
  46.                        android:layout_height="wrap_content"
  47.                        app:srcCompat="@drawable/ic_arrow_back"
  48.                        android:contentDescription="@string/image" />
  49.  
  50.  
  51.  
  52.                 </LinearLayout>
  53.  
  54.  
  55.                 <RelativeLayout
  56.                    android:layout_width="wrap_content"
  57.                    android:layout_height="match_parent"
  58.                    android:orientation="horizontal"
  59.                    android:layout_gravity="center"
  60.                    android:gravity="center">
  61.  
  62.                     <TextView
  63.                        android:id="@+id/serie_name"
  64.                        android:layout_width="wrap_content"
  65.                        android:layout_height="wrap_content"
  66.                        android:text="@string/seasons"
  67.                        android:textAllCaps="true"
  68.                        android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  69.                        android:textColor="@color/grey_11"
  70.                        android:textSize="12sp"
  71.                        app:fontFamily="sans-serif-black"
  72.  
  73.                        />
  74.                 </RelativeLayout>
  75.  
  76.             </androidx.appcompat.widget.Toolbar>
  77.  
  78.  
  79.         </com.google.android.material.appbar.AppBarLayout>
  80.  
  81.  
  82.         <androidx.coordinatorlayout.widget.CoordinatorLayout
  83.            android:id="@+id/myCoordinatorLayout"
  84.            android:layout_width="match_parent"
  85.            android:layout_height="match_parent"
  86.            android:background="@color/fragment_content_detail_overlay_end"
  87.            android:fitsSystemWindows="true">
  88.  
  89.  
  90.             <com.easyplexdemoapp.util.GridItemImageView
  91.                android:layout_width="match_parent"
  92.                android:layout_height="600dp"
  93.                android:background="@drawable/fragment_content_detail_top"
  94.                android:fitsSystemWindows="true"
  95.                android:scaleType="centerCrop"
  96.                android:alpha="0.3"
  97.                android:contentDescription="@string/image" />
  98.  
  99.             <com.easyplexdemoapp.util.GridItemImageView
  100.                android:id="@+id/image_movie_poster"
  101.                android:layout_width="match_parent"
  102.                android:layout_height="500dp"
  103.                android:fitsSystemWindows="true"
  104.                android:scaleType="centerCrop"
  105.                android:alpha="0.3"
  106.                android:contentDescription="@string/image" />
  107.  
  108.  
  109.             <ImageView
  110.                android:layout_width="match_parent"
  111.                android:layout_height="500dp"
  112.                android:background="@drawable/fragment_content_detail_overlay"
  113.                android:fitsSystemWindows="true"
  114.                android:scaleType="centerCrop"
  115.                app:layout_collapseMode="parallax"
  116.                app:layout_collapseParallaxMultiplier="0.5"
  117.                android:contentDescription="@string/image" />
  118.  
  119.  
  120.             <com.google.android.material.floatingactionbutton.FloatingActionButton
  121.                android:id="@+id/floating_comment_icon"
  122.                android:layout_width="wrap_content"
  123.                android:layout_height="wrap_content"
  124.                android:layout_gravity="end|bottom"
  125.                app:backgroundTint="@color/white"
  126.                android:layout_marginEnd="20dp"
  127.                android:layout_marginBottom="100dp"
  128.                android:src="@drawable/ic_comment"
  129.                tools:ignore="SpeakableTextPresentCheck,SpeakableTextPresentCheck,SpeakableTextPresentCheck,SpeakableTextPresentCheck" />
  130.  
  131.  
  132.             <androidx.core.widget.NestedScrollView
  133.                android:id="@+id/item_detail_container"
  134.                android:layout_width="match_parent"
  135.                android:layout_height="match_parent"
  136.                android:clipToPadding="false"
  137.                android:paddingTop="280dp"
  138.                android:paddingStart="30dp"
  139.                android:paddingEnd="30dp"
  140.                android:scrollbars="none"
  141.                android:visibility="visible"
  142.                android:scrollingCache="true"
  143.                app:layout_behavior="@string/appbar_scrolling_view_behavior">
  144.  
  145.  
  146.                 <LinearLayout
  147.                    android:layout_width="match_parent"
  148.                    android:layout_height="match_parent"
  149.                    android:orientation="vertical"
  150.                    >
  151.  
  152.  
  153.  
  154.                     <ProgressBar
  155.                        android:id="@+id/resumeProgressCheck"
  156.                        android:layout_width="wrap_content"
  157.                        android:layout_height="wrap_content"
  158.                        android:layout_gravity="center"
  159.                        android:scaleX="0.5"
  160.                        android:scaleY="0.5"
  161.                        android:visibility="gone"
  162.                        android:indeterminateTint="@color/main_color"
  163.                        />
  164.  
  165.  
  166.  
  167.                     <LinearLayout
  168.                        android:id="@+id/resumeLinear"
  169.                        android:layout_width="match_parent"
  170.                        android:layout_height="match_parent"
  171.                        android:layout_marginTop="25dp"
  172.                        android:layout_marginStart="40dp"
  173.                        android:layout_marginEnd="40dp"
  174.                        android:visibility="gone"
  175.                        android:orientation="horizontal">
  176.  
  177.                         <TextView
  178.                            android:id="@+id/epResumeTitle"
  179.                            android:layout_width="wrap_content"
  180.                            android:layout_height="wrap_content"
  181.                            android:maxLines="1"
  182.                            android:text="@string/movie_original_label"
  183.                            android:textAllCaps="true"
  184.                            android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  185.                            android:textColor="@color/grey_11"
  186.                            android:textSize="12sp"
  187.                            app:fontFamily="sans-serif-black" />
  188.  
  189.  
  190.  
  191.                         <TextView
  192.                            android:id="@+id/timeRemaning"
  193.                            android:layout_width="match_parent"
  194.                            android:layout_height="wrap_content"
  195.                            android:maxLength="15"
  196.                            android:maxLines="1"
  197.                            android:gravity="end"
  198.                            android:text="0M"
  199.                            android:textAllCaps="true"
  200.                            android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  201.                            android:textColor="@color/grey_11"
  202.                            android:textSize="12sp"
  203.                            app:fontFamily="sans-serif-black" />
  204.  
  205.  
  206.  
  207.  
  208.                     </LinearLayout>
  209.  
  210.  
  211.  
  212.                     <LinearLayout
  213.                        android:id="@+id/resumePlayProgress"
  214.                        android:layout_width="match_parent"
  215.                        android:layout_height="20dp"
  216.                        android:gravity="center_vertical"
  217.                        android:layout_marginStart="40dp"
  218.                        android:layout_marginEnd="40dp"
  219.                        android:orientation="horizontal"
  220.                        tools:ignore="UseCompoundDrawables">
  221.  
  222.                         <ProgressBar
  223.                            android:id="@+id/resume_progress_bar"
  224.                            android:layout_width="0dp"
  225.                            android:layout_height="5dp"
  226.                            android:layout_weight="1"
  227.                            android:indeterminate="false"
  228.                            android:visibility="visible"
  229.                            android:progressDrawable="@drawable/content_detail_progress"
  230.                            style="@android:style/Widget.ProgressBar.Horizontal" />
  231.  
  232.  
  233.  
  234.                     </LinearLayout>
  235.  
  236.  
  237.  
  238.  
  239.  
  240.                     <LinearLayout
  241.                        android:layout_width="match_parent"
  242.                        android:layout_height="match_parent"
  243.                        android:layout_gravity="center"
  244.                        android:gravity="center"
  245.                        android:layout_marginBottom="4dp"
  246.                        android:orientation="horizontal">
  247.  
  248.  
  249.  
  250.                         <TextView
  251.                            android:id="@+id/movie_premuim"
  252.                            android:layout_width="wrap_content"
  253.                            android:layout_height="@dimen/margin_20"
  254.                            android:layout_marginTop="4dp"
  255.                            android:background="@drawable/vip"
  256.                            android:paddingStart="4dp"
  257.                            android:paddingTop="3dp"
  258.                            android:paddingEnd="4dp"
  259.                            android:layout_marginBottom="2dp"
  260.                            android:paddingBottom="4dp"
  261.                            android:layout_marginStart="5dp"
  262.                            android:text="@string/vip"
  263.                            android:visibility="gone"
  264.                            android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  265.                            android:textColor="@color/grey_11"
  266.                            android:textSize="12sp"
  267.                            android:textStyle="bold"
  268.                            app:fontFamily="sans-serif-black" />
  269.  
  270.  
  271.                     </LinearLayout>
  272.                     <LinearLayout
  273.                        android:layout_width="match_parent"
  274.                        android:layout_height="match_parent"
  275.                        android:layout_gravity="center"
  276.                        android:gravity="center"
  277.                        android:orientation="vertical">
  278.  
  279.  
  280.  
  281.                         <TextView
  282.                            android:id="@+id/text_movie_title"
  283.                            android:layout_width="wrap_content"
  284.                            android:layout_height="wrap_content"
  285.                            android:maxLines="1"
  286.                            android:layout_gravity="center"
  287.                            android:gravity="center"
  288.                            android:text="@string/movie_original_label"
  289.                            android:textAllCaps="true"
  290.                            android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  291.                            android:textColor="@color/grey_11"
  292.                            android:textSize="20sp"
  293.                            app:fontFamily="sans-serif-black" />
  294.  
  295.  
  296.  
  297.  
  298.                         <LinearLayout
  299.  
  300.                            android:orientation="horizontal"
  301.                            android:layout_width="50dp"
  302.                            android:layout_height="50dp"
  303.                            android:background="@drawable/selected_white_login"
  304.                            android:focusable="true"
  305.                            android:gravity="center">
  306.  
  307.                             <TextView
  308.                                android:id="@+id/userReview"
  309.                                android:layout_width="wrap_content"
  310.                                android:layout_height="wrap_content"
  311.                                android:maxLines="1"
  312.                                android:layout_gravity="center"
  313.                                android:gravity="center"
  314.                                android:text="8.7"
  315.                                android:textAllCaps="true"
  316.                                android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  317.                                android:textColor="@color/grey_11"
  318.                                android:textSize="14sp"
  319.                                app:fontFamily="sans-serif-black" />
  320.  
  321.  
  322.  
  323.                         </LinearLayout>
  324.  
  325.  
  326.  
  327.                     </LinearLayout>
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.                         <LinearLayout
  335.                            android:layout_width="wrap_content"
  336.                            android:layout_height="wrap_content"
  337.                            android:layout_marginTop="5dp"
  338.                            android:layout_marginBottom="5dp"
  339.                            android:layout_gravity="center_horizontal"
  340.                            android:orientation="horizontal">
  341.  
  342.  
  343.                             <androidx.appcompat.widget.AppCompatRatingBar
  344.                                android:id="@+id/rating_bar"
  345.                                style="?android:attr/ratingBarStyleSmall"
  346.                                android:layout_width="wrap_content"
  347.                                android:layout_height="18dp"
  348.                                android:layout_gravity="center_horizontal"
  349.                                android:layout_marginEnd="5dp"
  350.                                android:numStars="5"
  351.                                android:rating="4.0"
  352.                                android:stepSize="0.1"
  353.                                />
  354.  
  355.                             <TextView
  356.                                android:id="@+id/view_movie_views"
  357.                                android:gravity="center"
  358.                                android:background="@drawable/view_bg"
  359.                                android:paddingStart="7dp"
  360.                                android:paddingEnd="7dp"
  361.                                android:layout_marginEnd="5dp"
  362.                                android:text="@string/movie_rating"
  363.                                android:layout_width="wrap_content"
  364.                                android:layout_height="18dp"
  365.                                style="@style/H100"
  366.                                />
  367.  
  368.  
  369.                         </LinearLayout>
  370.  
  371.  
  372.                     <LinearLayout
  373.                        android:layout_width="wrap_content"
  374.                        android:layout_height="wrap_content"
  375.                        android:layout_gravity="center_horizontal"
  376.                        android:gravity="end"
  377.                        android:orientation="horizontal">
  378.  
  379.  
  380.  
  381.  
  382.  
  383.                         <LinearLayout
  384.                            android:layout_width="wrap_content"
  385.                            android:layout_height="wrap_content"
  386.                            android:layout_gravity="start"
  387.                            android:orientation="horizontal">
  388.  
  389.  
  390.                             <TextView
  391.                                android:id="@+id/textMovieRelease"
  392.                                android:layout_width="match_parent"
  393.                                android:layout_height="wrap_content"
  394.                                android:layout_marginStart="3dp"
  395.                                android:paddingBottom="4dp"
  396.                                android:gravity="center"
  397.                                android:text="2021"
  398.                                android:textAllCaps="true"
  399.                                android:textColor="@color/bg_item_normal_state"
  400.                                android:textSize="11sp"
  401.                                app:fontFamily="sans-serif-black"
  402.                                android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  403.                                />
  404.  
  405.                             <TextView
  406.                                android:id="@+id/dot_genre"
  407.                                android:layout_width="match_parent"
  408.                                android:layout_height="wrap_content"
  409.                                android:layout_marginStart="3dp"
  410.                                android:paddingBottom="4dp"
  411.                                android:gravity="center"
  412.                                android:text="."
  413.                                android:textColor="@color/main_color"
  414.                                android:textSize="20sp"
  415.                                android:textAllCaps="true"
  416.                                app:fontFamily="sans-serif-black"
  417.                                android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  418.                                />
  419.  
  420.  
  421.                             <TextView
  422.                                android:id="@+id/mgenres"
  423.                                android:layout_width="match_parent"
  424.                                android:layout_height="wrap_content"
  425.                                android:layout_marginStart="3dp"
  426.                                android:paddingBottom="4dp"
  427.                                android:gravity="center"
  428.                                android:text="@string/genre"
  429.                                android:textAllCaps="true"
  430.                                android:textColor="@color/bg_item_normal_pressed_state"
  431.                                android:textSize="11sp"
  432.                                android:layout_marginEnd="10dp"
  433.                                app:fontFamily="sans-serif-black"
  434.                                android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  435.                                />
  436.  
  437.  
  438.                         </LinearLayout>
  439.  
  440.  
  441.                     </LinearLayout>
  442.  
  443.  
  444.                     <LinearLayout
  445.                        android:id="@+id/commentsizeLinear"
  446.                        android:orientation="horizontal"
  447.                        android:layout_width="wrap_content"
  448.                        android:layout_height="40dp"
  449.                        android:layout_marginStart="40dp"
  450.                        android:layout_marginTop="10dp"
  451.                        android:layout_marginEnd="40dp"
  452.                        android:paddingStart="15dp"
  453.                        android:background="@drawable/selected_white_login"
  454.                        android:paddingEnd="15dp"
  455.                        android:focusable="true"
  456.                        android:gravity="center"
  457.                        android:layout_gravity="center"
  458.                        >
  459.  
  460.  
  461.                         <TextView
  462.                            android:id="@+id/commentsize"
  463.                            android:layout_width="match_parent"
  464.                            android:layout_height="wrap_content"
  465.                            android:textSize="12sp"
  466.                            android:gravity="center"
  467.                            android:text="105 Comments"
  468.                            android:textStyle="bold"
  469.                            android:visibility="visible"
  470.                            android:textColor="@color/grey_11"
  471.                            android:layout_gravity="start|center"
  472.                            />
  473.                     </LinearLayout>
  474.  
  475.  
  476.                     <LinearLayout
  477.                        android:layout_width="match_parent"
  478.                        android:layout_height="match_parent"
  479.                        android:gravity="center"
  480.                        android:layout_marginTop="10dp"
  481.                        android:orientation="vertical">
  482.  
  483.  
  484.                         <TextView
  485.                            android:layout_width="wrap_content"
  486.                            android:layout_height="wrap_content"
  487.                            android:text="@string/movie_overview_label"
  488.                            android:textAllCaps="true"
  489.                            android:layout_marginTop="20dp"
  490.                            android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  491.                            android:textColor="@color/grey_3"
  492.                            android:textSize="16sp"
  493.                            app:fontFamily="sans-serif-black" />
  494.  
  495.  
  496.                         <com.borjabravo.readmoretextview.ReadMoreTextView
  497.                            android:id="@+id/text_overview_label"
  498.                            android:layout_width="match_parent"
  499.                            android:layout_height="wrap_content"
  500.                            android:layout_marginTop="10dp"
  501.                            android:gravity="center"
  502.                            android:text="@string/movie_overview_text"
  503.                            android:textAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse"
  504.                            android:textColor="@color/grey_11"
  505.                            style="@style/L_Micro"
  506.                            app:trimMode="trimModeLength"
  507.                            app:trimLength="175"
  508.                            app:colorClickableText="@color/main_color"
  509.                            android:textSize="12sp" />
  510.  
  511.                     </LinearLayout>
  512.  
  513.  
  514.  
  515.  
  516.                     <LinearLayout
  517.                        android:id="@+id/RecycleViewTrailerLayout"
  518.                        android:layout_width="match_parent"
  519.                        android:layout_height="match_parent"
  520.                        android:layout_marginTop="20dp"
  521.                        android:layout_marginStart="40dp"
  522.                        android:layout_marginEnd="40dp"
  523.                        android:orientation="vertical">
  524.  
  525.  
  526.                         <LinearLayout
  527.                            android:id="@+id/PlayButtonIcon"
  528.                            android:orientation="horizontal"
  529.                            android:layout_width="match_parent"
  530.                            android:layout_height="40dp"
  531.                            android:layout_marginStart="40dp"
  532.                            android:layout_marginTop="10dp"
  533.                            android:layout_marginEnd="40dp"
  534.                            android:paddingStart="15dp"
  535.                            android:background="@drawable/btn_gradient_white_login"
  536.                            android:paddingEnd="15dp"
  537.                            android:focusable="true"
  538.                            android:gravity="start|center"
  539.                            >
  540.  
  541.  
  542.                             <TextView
  543.                                android:layout_width="match_parent"
  544.                                android:layout_height="wrap_content"
  545.                                android:textSize="12sp"
  546.                                android:gravity="center"
  547.                                android:text="@string/play"
  548.                                android:textStyle="bold"
  549.                                android:visibility="visible"
  550.                                android:textColor="@color/black"
  551.                                android:layout_gravity="start|center"
  552.                                />
  553.                         </LinearLayout>
  554.  
  555.                         <LinearLayout
  556.                            android:id="@+id/resumePlay"
  557.                            android:orientation="horizontal"
  558.                            android:layout_width="match_parent"
  559.                            android:layout_height="40dp"
  560.                            android:layout_marginStart="40dp"
  561.                            android:layout_marginTop="10dp"
  562.                            android:layout_marginEnd="40dp"
  563.                            android:paddingStart="15dp"
  564.                            android:background="@drawable/btn_gradient_second_selected"
  565.                            android:paddingEnd="15dp"
  566.                            android:focusable="true"
  567.                            android:gravity="start|center"
  568.                            >
  569.  
  570.  
  571.                             <TextView
  572.                                android:layout_width="match_parent"
  573.                                android:layout_height="wrap_content"
  574.                                android:textSize="12sp"
  575.                                android:gravity="center"
  576.                                android:text="@string/resumes"
  577.                                android:textStyle="bold"
  578.                                android:visibility="visible"
  579.                                android:textColor="@color/white"
  580.                                android:layout_gravity="start|center"
  581.                                />
  582.                         </LinearLayout>
  583.  
  584.  
  585.                         <LinearLayout
  586.                            android:id="@+id/ButtonPlayTrailer"
  587.                            android:orientation="horizontal"
  588.                            android:layout_width="match_parent"
  589.                            android:layout_height="40dp"
  590.                            android:layout_marginStart="40dp"
  591.                            android:layout_marginTop="10dp"
  592.                            android:layout_marginEnd="40dp"
  593.                            android:paddingStart="15dp"
  594.                            android:background="@drawable/btn_gradient_second_selected"
  595.                            android:paddingEnd="15dp"
  596.                            android:focusable="true"
  597.                            android:gravity="start|center"
  598.                            >
  599.  
  600.  
  601.                             <TextView
  602.                                android:layout_width="match_parent"
  603.                                android:layout_height="wrap_content"
  604.                                android:textSize="12sp"
  605.                                android:gravity="center"
  606.                                android:text="@string/play_trailer"
  607.                                android:textStyle="bold"
  608.                                android:visibility="visible"
  609.                                android:textColor="@color/white"
  610.                                android:layout_gravity="start|center"
  611.                                />
  612.                         </LinearLayout>
  613.  
  614.                     </LinearLayout>
  615.  
  616.  
  617.  
  618.                     <FrameLayout
  619.                        android:id="@+id/maxNativeAds"
  620.                        android:layout_width="match_parent"
  621.                        android:layout_marginTop="20dp"
  622.                        android:layout_height="match_parent"
  623.                        android:layout_gravity="bottom"
  624.                        />
  625.  
  626.  
  627.                     <FrameLayout
  628.                        android:id="@+id/fl_adplaceholder"
  629.                        android:layout_width="match_parent"
  630.                        android:layout_height="wrap_content"
  631.                        android:layout_marginTop="16dp" />
  632.  
  633.  
  634.                     <LinearLayout
  635.                        android:id="@+id/NavigationTabLayout"
  636.                        android:layout_width="wrap_content"
  637.                        android:layout_height="wrap_content"
  638.                        android:layout_gravity="center_horizontal"
  639.                        android:nextFocusDown="@+id/content_home"
  640.                        android:orientation="horizontal"
  641.                        android:padding="10dp"
  642.  
  643.                        >
  644.  
  645.  
  646.                         <LinearLayout
  647.                            android:id="@+id/favoriteIcon"
  648.                            android:layout_width="50dp"
  649.                            android:layout_height="50dp"
  650.                            android:layout_marginTop="15dp"
  651.                            android:background="@drawable/selected_white_login"
  652.                            android:focusable="true"
  653.                            android:gravity="center"
  654.                            android:nextFocusLeft="@+id/fading_edge_layout2"
  655.                            android:nextFocusDown="@+id/fading_edge_layout2"
  656.                            android:orientation="horizontal"
  657.                            android:paddingStart="15dp"
  658.                            android:paddingEnd="15dp">
  659.  
  660.  
  661.                             <ImageView
  662.                                android:id="@+id/favoriteImage"
  663.                                android:layout_width="25dp"
  664.                                android:layout_height="25dp"
  665.                                android:contentDescription="@string/image"
  666.                                android:padding="2dp"
  667.                                android:src="@drawable/add_from_queue"
  668.                                app:layout_constraintEnd_toStartOf="@id/tubi_tv_controller_guideline_right"
  669.                                app:layout_constraintTop_toTopOf="@+id/tubi_tv_controller_guideline_top"
  670.                                app:tint="@color/white" />
  671.  
  672.                         </LinearLayout>
  673.  
  674.  
  675.  
  676.                         <LinearLayout
  677.                            android:id="@+id/report"
  678.                            android:layout_width="50dp"
  679.                            android:layout_height="50dp"
  680.                            android:layout_marginTop="15dp"
  681.                            android:background="@drawable/selected_white_login"
  682.                            android:focusable="true"
  683.                            android:gravity="center"
  684.                            android:nextFocusLeft="@+id/fading_edge_layout2"
  685.                            android:nextFocusDown="@+id/fading_edge_layout2"
  686.                            android:orientation="horizontal"
  687.                            android:paddingStart="15dp"
  688.                            android:paddingEnd="15dp">
  689.  
  690.  
  691.                             <ImageView
  692.                                android:id="@+id/reportImage"
  693.                                android:layout_width="25dp"
  694.                                android:layout_height="25dp"
  695.                                android:contentDescription="@string/image"
  696.                                android:padding="2dp"
  697.                                android:src="@drawable/ic_report"
  698.                                app:layout_constraintEnd_toStartOf="@id/tubi_tv_controller_guideline_right"
  699.                                app:layout_constraintTop_toTopOf="@+id/tubi_tv_controller_guideline_top"
  700.                                app:tint="@color/white" />
  701.  
  702.                         </LinearLayout>
  703.  
  704.  
  705.  
  706.                         <LinearLayout
  707.                            android:id="@+id/review"
  708.                            android:layout_width="50dp"
  709.                            android:layout_height="50dp"
  710.                            android:layout_marginTop="15dp"
  711.                            android:background="@drawable/selected_white_login"
  712.                            android:focusable="true"
  713.                            android:gravity="center"
  714.                            android:nextFocusLeft="@+id/fading_edge_layout2"
  715.                            android:nextFocusDown="@+id/fading_edge_layout2"
  716.                            android:orientation="horizontal"
  717.                            android:paddingStart="15dp"
  718.                            android:paddingEnd="15dp">
  719.  
  720.  
  721.                             <ImageView
  722.                                android:id="@+id/reviewImage"
  723.                                android:layout_width="25dp"
  724.                                android:layout_height="25dp"
  725.                                android:contentDescription="@string/image"
  726.                                android:padding="2dp"
  727.                                android:src="@drawable/ic_thumb_up"
  728.                                app:layout_constraintEnd_toStartOf="@id/tubi_tv_controller_guideline_right"
  729.                                app:layout_constraintTop_toTopOf="@+id/tubi_tv_controller_guideline_top"
  730.                                app:tint="@color/white" />
  731.  
  732.                         </LinearLayout>
  733.  
  734.                         <LinearLayout
  735.                            android:id="@+id/shareIcon"
  736.                            android:layout_width="50dp"
  737.                            android:layout_height="50dp"
  738.                            android:layout_marginTop="15dp"
  739.                            android:background="@drawable/selected_white_login"
  740.                            android:focusable="true"
  741.                            android:gravity="center"
  742.                            android:nextFocusLeft="@+id/fading_edge_layout2"
  743.                            android:nextFocusDown="@+id/fading_edge_layout2"
  744.                            android:orientation="horizontal"
  745.                            android:paddingStart="15dp"
  746.                            android:paddingEnd="15dp">
  747.  
  748.  
  749.                             <ImageView
  750.                                android:layout_width="25dp"
  751.                                android:layout_height="25dp"
  752.                                android:contentDescription="@string/image"
  753.                                android:padding="2dp"
  754.                                android:src="@drawable/share_normal"
  755.                                app:layout_constraintEnd_toStartOf="@id/tubi_tv_controller_guideline_right"
  756.                                app:layout_constraintTop_toTopOf="@+id/tubi_tv_controller_guideline_top"
  757.                                app:tint="@color/white" />
  758.  
  759.                         </LinearLayout>
  760.  
  761.  
  762.                         <LinearLayout
  763.                            android:id="@+id/downloadMovie"
  764.                            android:layout_width="50dp"
  765.                            android:layout_height="50dp"
  766.                            android:layout_marginTop="15dp"
  767.                            android:background="@drawable/selected_white_login"
  768.                            android:focusable="true"
  769.                            android:gravity="center"
  770.                            android:nextFocusLeft="@+id/fading_edge_layout2"
  771.                            android:nextFocusDown="@+id/fading_edge_layout2"
  772.                            android:orientation="horizontal"
  773.                            android:paddingStart="15dp"
  774.                            android:paddingEnd="15dp">
  775.  
  776.  
  777.                             <ImageView
  778.                                android:id="@+id/downloadMovieImage"
  779.                                android:layout_width="25dp"
  780.                                android:layout_height="25dp"
  781.                                android:contentDescription="@string/image"
  782.                                android:padding="2dp"
  783.                                android:src="@drawable/ic_download"
  784.                                app:layout_constraintEnd_toStartOf="@id/tubi_tv_controller_guideline_right"
  785.                                app:layout_constraintTop_toTopOf="@+id/tubi_tv_controller_guideline_top"
  786.                                app:tint="@color/white" />
  787.  
  788.                         </LinearLayout>
  789.  
  790.  
  791.                     </LinearLayout>
  792.  
  793.  
  794.  
  795.  
  796.                     <TextView
  797.                        android:layout_width="wrap_content"
  798.                        android:layout_height="wrap_content"
  799.                        android:layout_marginTop="24dp"
  800.                        android:text="@string/movie_cast_label"
  801.                        android:textAllCaps="true"
  802.                        android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  803.                        android:textColor="@color/grey_3"
  804.                        android:textSize="16sp"
  805.                        app:fontFamily="sans-serif-black" />
  806.  
  807.  
  808.  
  809.  
  810.                     <LinearLayout
  811.                        android:layout_width="match_parent"
  812.                        android:layout_height="wrap_content"
  813.                        android:clickable="true"
  814.                        android:gravity="center_horizontal"
  815.                        android:orientation="vertical"
  816.                        android:focusable="true">
  817.  
  818.  
  819.                         <androidx.recyclerview.widget.RecyclerView
  820.                            android:id="@+id/recycler_view_cast_movie_detail"
  821.                            android:layout_width="match_parent"
  822.                            android:layout_height="match_parent"
  823.                            android:layout_marginTop="@dimen/pixel_10dp"
  824.                            android:nestedScrollingEnabled="false" />
  825.  
  826.  
  827.  
  828.  
  829.                     </LinearLayout>
  830.  
  831.  
  832.                     <TextView
  833.                        android:layout_width="match_parent"
  834.                        android:layout_height="0dp"
  835.                        android:layout_marginTop="@dimen/pixel_10dp"
  836.                        android:layout_weight="1"
  837.                        android:text="@string/relateds"
  838.                        android:textAllCaps="true"
  839.                        android:textAppearance="@style/TextAppearance.AppCompat.Display1"
  840.                        android:textColor="@color/grey_11"
  841.                        android:textSize="16sp"
  842.                        app:fontFamily="sans-serif-black" />
  843.  
  844.  
  845.                     <androidx.recyclerview.widget.RecyclerView
  846.                        android:id="@+id/rv_mylike"
  847.                        android:layout_width="match_parent"
  848.                        android:layout_marginTop="@dimen/pixel_10dp"
  849.                        android:layout_marginBottom="100dp"
  850.                        android:layout_height="match_parent"
  851.                        android:nestedScrollingEnabled="false" />
  852.  
  853.  
  854.                     <LinearLayout
  855.                        android:id="@+id/related_not_found"
  856.                        android:layout_width="wrap_content"
  857.                        android:layout_height="wrap_content"
  858.                        android:layout_gravity="center"
  859.                        android:orientation="vertical"
  860.                        android:layout_marginTop="@dimen/pixel_10dp"
  861.                        android:visibility="gone">
  862.  
  863.  
  864.                         <TextView
  865.                            android:layout_width="match_parent"
  866.                            android:layout_height="match_parent"
  867.                            android:layout_marginTop="@dimen/spacing_medium"
  868.                            android:gravity="center"
  869.                            android:text="@string/no_relateds_movies_found"
  870.                            android:textColor="@color/grey_40" />
  871.  
  872.                     </LinearLayout>
  873.  
  874.                 </LinearLayout>
  875.  
  876.  
  877.             </androidx.core.widget.NestedScrollView>
  878.  
  879.  
  880.             <ProgressBar
  881.                android:id="@+id/progress_bar"
  882.                android:layout_width="wrap_content"
  883.                android:layout_height="wrap_content"
  884.                android:layout_gravity="center"
  885.                android:layout_centerInParent="true"
  886.                android:visibility="gone"
  887.                android:indeterminateTint="@color/main_color"
  888.                />
  889.  
  890.  
  891.  
  892.             <FrameLayout
  893.                android:id="@+id/maxAdView"
  894.                android:layout_width="match_parent"
  895.                android:layout_height="50dp"
  896.                app:layout_constraintRight_toRightOf="parent"
  897.                app:layout_constraintBottom_toBottomOf="parent"
  898.                app:layout_constraintLeft_toLeftOf="parent"
  899.                android:layout_gravity="bottom|center"
  900.                android:gravity="center_horizontal"
  901.                app:layout_constraintStart_toStartOf="parent"
  902.                />
  903.  
  904.  
  905.             <FrameLayout
  906.                android:id="@+id/ad_view_container"
  907.                android:layout_width="match_parent"
  908.                android:layout_height="wrap_content"
  909.                android:layout_gravity="bottom"
  910.                android:layout_alignParentBottom="true"
  911.                />
  912.  
  913.  
  914.  
  915.             <RelativeLayout
  916.                android:id="@+id/adcolony_ad_container"
  917.                android:layout_width="match_parent"
  918.                android:layout_height="50dp"
  919.                android:layout_alignParentTop="true"
  920.                android:layout_marginTop="10dp"
  921.                android:layout_alignParentBottom="true"
  922.                android:layout_gravity="bottom"
  923.                android:visibility="visible"/>
  924.  
  925.             <FrameLayout
  926.                android:id="@+id/VungleBannerContainerIron"
  927.                android:layout_width="match_parent"
  928.                android:layout_height="wrap_content"
  929.                android:layout_alignParentBottom="true"
  930.                android:layout_gravity="bottom"
  931.                android:visibility="visible" />
  932.  
  933.  
  934.             <FrameLayout
  935.                android:id="@+id/bannerContainerIron"
  936.                android:layout_width="match_parent"
  937.                android:layout_height="50dp"
  938.                android:layout_alignParentBottom="true"
  939.                android:layout_gravity="bottom"
  940.                android:visibility="visible" />
  941.  
  942.  
  943.             <LinearLayout
  944.                android:id="@+id/banner_container"
  945.                android:layout_width="match_parent"
  946.                android:layout_height="wrap_content"
  947.                android:layout_gravity="bottom"
  948.                android:layout_alignParentBottom="true"
  949.                android:orientation="vertical"/>
  950.  
  951.  
  952.             <RelativeLayout
  953.                android:id="@+id/unity_banner_view_container"
  954.                android:layout_width="match_parent"
  955.                android:layout_height="wrap_content"
  956.                android:layout_gravity="bottom"
  957.                android:gravity="center"
  958.                android:layout_alignParentBottom="true"
  959.                android:visibility="gone" />
  960.  
  961.             <com.appodeal.ads.BannerView
  962.                android:id="@+id/appodealBannerView"
  963.                android:layout_width="match_parent"
  964.                android:layout_marginTop="30dp"
  965.                android:layout_gravity="bottom"
  966.                android:layout_alignParentBottom="true"
  967.                android:layout_height="50dp"
  968.                />
  969.  
  970.             <com.appnext.banners.BannerView
  971.                android:id="@+id/bannerAppNext"
  972.                android:layout_width="match_parent"
  973.                android:layout_marginTop="30dp"
  974.                android:layout_gravity="bottom"
  975.                android:layout_alignParentBottom="true"
  976.                android:layout_height="50dp"
  977.                />
  978.  
  979.  
  980.             <FrameLayout
  981.                android:id="@+id/bottom_sheet"
  982.                android:layout_width="match_parent"
  983.                android:layout_height="wrap_content"
  984.                android:layout_gravity="bottom"
  985.                app:layout_behavior="@string/bottom_sheet_behavior"
  986.                tools:ignore="MissingConstraints" />
  987.  
  988.  
  989.         </androidx.coordinatorlayout.widget.CoordinatorLayout>
  990.  
  991.  
  992.  
  993.  
  994.     </androidx.constraintlayout.widget.ConstraintLayout>
  995.  
  996.  
  997. </layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement