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:
HybridAU 2022-09-14 21:00:44 +08:00 committed by GitHub
parent ebce4c5b7e
commit 9db0133a5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 1 deletions

View file

@ -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
//////////////////////////////////////////////////////////////////////////*/