add downloads menu item to detail fragment
This commit is contained in:
parent
685eebeb56
commit
aee26fcffc
2 changed files with 10 additions and 0 deletions
|
|
@ -180,6 +180,12 @@ class ActionBarHandler {
|
|||
onPlayAudioListener.onActionSelected(selectedVideoStream);
|
||||
}
|
||||
return true;
|
||||
case R.id.menu_item_downloads: {
|
||||
Intent intent =
|
||||
new Intent(activity, org.schabi.newpipe.download.MainActivity.class);
|
||||
activity.startActivity(intent);
|
||||
return true;
|
||||
}
|
||||
default:
|
||||
Log.e(TAG, "Menu Item not known");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue