mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 12:38:00 +01:00
Fix overlap between extended details and video controls
This commit is contained in:
parent
bccf0cff58
commit
24232c8205
2 changed files with 7 additions and 2 deletions
|
@ -15,6 +15,7 @@ import android.widget.RelativeLayout
|
||||||
import android.widget.SeekBar
|
import android.widget.SeekBar
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
import androidx.appcompat.content.res.AppCompatResources
|
import androidx.appcompat.content.res.AppCompatResources
|
||||||
|
import androidx.core.view.children
|
||||||
import androidx.media3.common.*
|
import androidx.media3.common.*
|
||||||
import androidx.media3.common.util.UnstableApi
|
import androidx.media3.common.util.UnstableApi
|
||||||
import androidx.media3.datasource.ContentDataSource
|
import androidx.media3.datasource.ContentDataSource
|
||||||
|
@ -597,7 +598,10 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S
|
||||||
val fullscreenOffset = smallMargin + if (mIsFullscreen) 0 else requireContext().navigationBarHeight
|
val fullscreenOffset = smallMargin + if (mIsFullscreen) 0 else requireContext().navigationBarHeight
|
||||||
var actionsHeight = 0f
|
var actionsHeight = 0f
|
||||||
if (!mIsFullscreen) {
|
if (!mIsFullscreen) {
|
||||||
actionsHeight += resources.getDimension(R.dimen.video_player_play_pause_size)
|
if (binding.bottomVideoTimeHolder.root.children.any { isVisible }) {
|
||||||
|
actionsHeight += binding.bottomVideoTimeHolder.root.height
|
||||||
|
}
|
||||||
|
|
||||||
if (mConfig.bottomActions) {
|
if (mConfig.bottomActions) {
|
||||||
actionsHeight += resources.getDimension(R.dimen.bottom_actions_height)
|
actionsHeight += resources.getDimension(R.dimen.bottom_actions_height)
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,7 +67,8 @@
|
||||||
android:textColor="@color/theme_dark_text_color"
|
android:textColor="@color/theme_dark_text_color"
|
||||||
android:textSize="@dimen/smaller_text_size"
|
android:textSize="@dimen/smaller_text_size"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
tools:text="My video\nAnother line" />
|
tools:text="Big buck bunny.mp4\n948.52 MB\n1920 x 1080 (2.1MP)\n10 April 2008, 08:30 AM"
|
||||||
|
tools:visibility="visible" />
|
||||||
|
|
||||||
<include
|
<include
|
||||||
android:id="@+id/bottom_video_time_holder"
|
android:id="@+id/bottom_video_time_holder"
|
||||||
|
|
Loading…
Reference in a new issue