mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Fix expansion of items within StyledPlayerView popup
Issue: #9086 PiperOrigin-RevId: 380756562
This commit is contained in:
parent
5b8be42fa1
commit
90cd2a2131
4 changed files with 6 additions and 4 deletions
|
|
@ -40,6 +40,9 @@
|
|||
([#9061](https://github.com/google/ExoPlayer/issues/9061)).
|
||||
* Fix progress bar flickering immediately after the user seeks
|
||||
([#9049](https://github.com/google/ExoPlayer/pull/9049)).
|
||||
* Fix `StyledPlayerView` and `StyledPlayerControlView` popup menu items
|
||||
not expanding to occupy the full width of the popup
|
||||
([#9086](https://github.com/google/ExoPlayer/issues/9086)).
|
||||
|
||||
### 2.14.1 (2021-06-11)
|
||||
|
||||
|
|
|
|||
|
|
@ -16,8 +16,7 @@
|
|||
<androidx.recyclerview.widget.RecyclerView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/exo_settings_listview"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="@color/exo_black_opacity_70"
|
||||
android:scrollbars="vertical"/>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
limitations under the License.
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="@dimen/exo_setting_width"
|
||||
android:minHeight="@dimen/exo_settings_height"
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
limitations under the License.
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="@dimen/exo_setting_width"
|
||||
android:minHeight="@dimen/exo_settings_height"
|
||||
|
|
|
|||
Loading…
Reference in a new issue