forked from recloudstream/cloudstream
fixed UI bug with chomecast
This commit is contained in:
parent
7e83670963
commit
49a91328d8
2 changed files with 29 additions and 24 deletions
|
@ -156,6 +156,8 @@
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:layout_marginStart="@dimen/loading_margin"
|
||||||
|
android:layout_marginEnd="@dimen/loading_margin"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
|
@ -247,9 +247,10 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:clipToPadding="false"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_marginStart="@dimen/result_padding"
|
android:paddingStart="@dimen/result_padding"
|
||||||
android:layout_marginEnd="@dimen/result_padding"
|
android:paddingEnd="@dimen/result_padding"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
@ -596,9 +597,8 @@
|
||||||
</androidx.core.widget.ContentLoadingProgressBar>
|
</androidx.core.widget.ContentLoadingProgressBar>
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
android:descendantFocusability="afterDescendants"
|
android:descendantFocusability="afterDescendants"
|
||||||
|
|
||||||
android:id="@+id/result_episodes"
|
android:id="@+id/result_episodes"
|
||||||
|
android:clipToPadding="false"
|
||||||
android:layout_marginTop="0dp"
|
android:layout_marginTop="0dp"
|
||||||
android:paddingBottom="100dp"
|
android:paddingBottom="100dp"
|
||||||
tools:listitem="@layout/result_episode"
|
tools:listitem="@layout/result_episode"
|
||||||
|
@ -611,7 +611,28 @@
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_gravity="bottom"
|
android:layout_gravity="bottom"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
>
|
||||||
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||||
|
android:visibility="gone"
|
||||||
|
tools:visibility="visible"
|
||||||
|
app:elevation="0dp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:backgroundTint="?attr/primaryGrayBackground"
|
||||||
|
app:tint="?attr/colorPrimary"
|
||||||
|
android:textColor="?attr/colorPrimary"
|
||||||
|
app:iconTint="?attr/colorPrimary"
|
||||||
|
android:layout_margin="16dp"
|
||||||
|
android:id="@+id/result_bookmark_fab"
|
||||||
|
android:layout_gravity="end|bottom"
|
||||||
|
app:icon="@drawable/ic_baseline_bookmark_24"
|
||||||
|
android:textAllCaps="false"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
tools:ignore="ContentDescription">
|
||||||
|
</com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton>
|
||||||
<fragment
|
<fragment
|
||||||
app:customCastBackgroundColor="?attr/primaryBlackBackground"
|
app:customCastBackgroundColor="?attr/primaryBlackBackground"
|
||||||
app:castControlButtons="@array/cast_mini_controller_control_buttons"
|
app:castControlButtons="@array/cast_mini_controller_control_buttons"
|
||||||
|
@ -644,23 +665,5 @@
|
||||||
android:foreground="?android:attr/selectableItemBackgroundBorderless"
|
android:foreground="?android:attr/selectableItemBackgroundBorderless"
|
||||||
android:contentDescription="@string/search_poster_descript"/>
|
android:contentDescription="@string/search_poster_descript"/>
|
||||||
</androidx.cardview.widget.CardView>-->
|
</androidx.cardview.widget.CardView>-->
|
||||||
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible"
|
|
||||||
app:elevation="0dp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
app:backgroundTint="?attr/primaryGrayBackground"
|
|
||||||
app:tint="?attr/colorPrimary"
|
|
||||||
android:textColor="?attr/colorPrimary"
|
|
||||||
app:iconTint="?attr/colorPrimary"
|
|
||||||
android:layout_margin="16dp"
|
|
||||||
android:id="@+id/result_bookmark_fab"
|
|
||||||
android:layout_gravity="end|bottom"
|
|
||||||
app:icon="@drawable/ic_baseline_bookmark_24"
|
|
||||||
android:textAllCaps="false"
|
|
||||||
android:gravity="center"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
tools:ignore="ContentDescription">
|
|
||||||
</com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton>
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
Loading…
Reference in a new issue