I am trying to implement cast to tv feature using MediaRouteButton and exoPlayer. I have a strange issue with MediaRouteButton, I just followed this tutorial and implemented MediaRouteButton as a view not as part of the menu. Here what I have done till now, but after running the app, the MediaRouteButton is disabled.
This is layout:
<androidx.mediarouter.app.MediaRouteButton
android:id="@+id/media_route_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:mediaRouteTypes="user"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
/>
This is kotlin code inside activity:
class TestActivity : AppCompatActivity() {
//var APP_ID = "4F8B3483"
var mMediaRouteButton: MediaRouteButton? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_test)
mMediaRouteButton = findViewById(R.id.media_route_button);
CastContext.getSharedInstance(this);
CastButtonFactory.setUpMediaRouteButton(this, mMediaRouteButton);
}
}
Any suggestions?
UPDATE July 7th 2023: this method is deprecated and does nothing
According to documentation:
the button is disabled and cannot be clicked unless setAlwaysVisible is called.
REF: https://developer.android.com/reference/androidx/mediarouter/app/MediaRouteButton
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With