mirror of
https://github.com/Docile-Alligator/Infinity-For-Reddit.git
synced 2026-02-07 14:05:36 +00:00
Fix app crashes when going into ViewVideoActivity, ViewImgurVideoFragment and ViewRedditGalleryVideoFragment.
This commit is contained in:
@ -487,7 +487,7 @@ public class ViewVideoActivity extends AppCompatActivity implements CustomFontRe
|
||||
});
|
||||
}
|
||||
|
||||
MaterialButton playPauseButton = findViewById(R.id.exo_play_pause);
|
||||
MaterialButton playPauseButton = findViewById(R.id.exo_play_pause_button_exo_playback_control_view);
|
||||
Drawable playDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_play_arrow_24dp, null);
|
||||
Drawable pauseDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_pause_24dp, null);
|
||||
playPauseButton.setOnClickListener(view -> {
|
||||
|
||||
@ -289,7 +289,7 @@ public class ViewImgurVideoFragment extends Fragment {
|
||||
binding.getMuteButton().setIconResource(R.drawable.ic_unmute_24dp);
|
||||
}
|
||||
|
||||
MaterialButton playPauseButton = binding.getRoot().findViewById(R.id.exo_play_pause);
|
||||
MaterialButton playPauseButton = binding.getRoot().findViewById(R.id.exo_play_pause_button_exo_playback_control_view);
|
||||
Drawable playDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_play_arrow_24dp, null);
|
||||
Drawable pauseDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_pause_24dp, null);
|
||||
playPauseButton.setOnClickListener(view -> {
|
||||
|
||||
@ -290,7 +290,7 @@ public class ViewRedditGalleryVideoFragment extends Fragment {
|
||||
binding.getMuteButton().setImageResource(R.drawable.ic_unmute_24dp);
|
||||
}
|
||||
|
||||
MaterialButton playPauseButton = binding.getRoot().findViewById(R.id.exo_play_pause);
|
||||
MaterialButton playPauseButton = binding.getRoot().findViewById(R.id.exo_play_pause_button_exo_playback_control_view);
|
||||
Drawable playDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_play_arrow_24dp, null);
|
||||
Drawable pauseDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_pause_24dp, null);
|
||||
playPauseButton.setOnClickListener(view -> {
|
||||
|
||||
@ -55,14 +55,14 @@
|
||||
app:backgroundTint="#444141"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/exo_play_pause"
|
||||
app:layout_constraintEnd_toStartOf="@+id/exo_play_pause_button_exo_playback_control_view"
|
||||
app:layout_constraintHorizontal_bias="0.5"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintHorizontal_chainStyle="packed"
|
||||
style="?attr/materialIconButtonOutlinedStyle" />
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/exo_play_pause"
|
||||
android:id="@+id/exo_play_pause_button_exo_playback_control_view"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:strokeWidth="0dp"
|
||||
@ -90,7 +90,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.5"
|
||||
app:layout_constraintStart_toEndOf="@+id/exo_play_pause"
|
||||
app:layout_constraintStart_toEndOf="@+id/exo_play_pause_button_exo_playback_control_view"
|
||||
style="?attr/materialIconButtonOutlinedStyle" />
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
|
||||
Reference in New Issue
Block a user