Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0176422f
authored
Aug 26, 2020
by
Yoni Obadia
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Review: Update according to review
parent
88d7587c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
library/ui/proguard-rules.txt
library/ui/src/main/java/com/google/android/exoplayer2/ui/TrackSelectionDialogBuilder.java
library/ui/proguard-rules.txt
View file @
0176422f
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
-dontnote androidx.appcompat.app.AlertDialog.Builder
-dontnote androidx.appcompat.app.AlertDialog.Builder
-keepclassmembers class androidx.appcompat.app.AlertDialog$Builder {
-keepclassmembers class androidx.appcompat.app.AlertDialog$Builder {
<init>(android.content.Context);
<init>(android.content.Context);
<init>(android.content.Context, int);
public android.content.Context getContext();
public android.content.Context getContext();
public androidx.appcompat.app.AlertDialog$Builder setTitle(java.lang.CharSequence);
public androidx.appcompat.app.AlertDialog$Builder setTitle(java.lang.CharSequence);
public androidx.appcompat.app.AlertDialog$Builder setView(android.view.View);
public androidx.appcompat.app.AlertDialog$Builder setView(android.view.View);
...
...
library/ui/src/main/java/com/google/android/exoplayer2/ui/TrackSelectionDialogBuilder.java
View file @
0176422f
...
@@ -123,7 +123,12 @@ public final class TrackSelectionDialogBuilder {
...
@@ -123,7 +123,12 @@ public final class TrackSelectionDialogBuilder {
newOverrides
.
isEmpty
()
?
null
:
newOverrides
.
get
(
0
)));
newOverrides
.
isEmpty
()
?
null
:
newOverrides
.
get
(
0
)));
}
}
public
TrackSelectionDialogBuilder
setTheme
(
int
themeResId
)
{
/**
* Sets the resource ID of the theme used to inflate this dialog.
* @param themeResId the resource ID to use
* @return This builder, for convenience.
*/
public
TrackSelectionDialogBuilder
setTheme
(
@StyleRes
int
themeResId
)
{
this
.
themeResId
=
themeResId
;
this
.
themeResId
=
themeResId
;
return
this
;
return
this
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment