Add play queue button to video details fragment
* Add play queue button to video details fragment * Use existing ic_list icon * Still open play queue even when queue is empty * Change app:srcCompat to android:src
This commit is contained in:
parent
ebce4c5b7e
commit
9db0133a5b
5 changed files with 30 additions and 1 deletions
|
|
@ -639,6 +639,11 @@ public final class NavigationHelper {
|
|||
return intent;
|
||||
}
|
||||
|
||||
public static void openPlayQueue(final Context context) {
|
||||
final Intent intent = new Intent(context, PlayQueueActivity.class);
|
||||
context.startActivity(intent);
|
||||
}
|
||||
|
||||
/*//////////////////////////////////////////////////////////////////////////
|
||||
// Link handling
|
||||
//////////////////////////////////////////////////////////////////////////*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue