با سلام و احترام
با استفاده از لایبرری exo player یه برنامه ساده برای پخش ویدیو نوشتم
که در ابتدا از PlayerView استفاده شده بود
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/video_detail"
android:layout_width="0dp"
android:layout_height="0dp"
app:controller_layout_id="@layout/exo_styled_player_control_view"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
و همچنین برای سفارش سازی controller آن از فایل زیر استفاده میکنم
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/exo_pause"
style="@style/ExoMediaButton.Pause"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/exo_play"
style="@style/ExoMediaButton.Play"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
androidx.constraintlayout.widget.ConstraintLayout>
که با این تنظیمات ویدیو کاملا درست پخش میشه و ویو کنترل شفارشی شده(@layout/exo_styled_player_control_view) هم که فقط شامل دکمه play و pause هست بخوبی کار میکنه (ینی ویدیو با زدن دکمه استپ میشه و مجدد با زدن دکمه شروع به پخش مجدد میشه)
مشکل جایی شروع میشه که من PlayerView رو به StyledPlayerView تغییر میدم (به دلیل Deprecated شدن PlayerView ) و از اینجا به بعد دیگه دکمه play و pasue ، عمل نمیکنند (ینی عملکرد این دکمهها از بین میره)
این نکته هم اضاف کنم دورن فایل جاوا هم هرجا از PlayerView استفاده کردم type اش رو به StyledPlayerView تغییر دادم (ینی ران تایم اروری ندارم)
کلی سرچ کردم ولی به جواب نرسیدم که چرا این مشکل به وجود میاد
امیدوارم که که بتونین در این زمینه منو راهنمایی کنید