use of io.hefuyi.listener.ui.dialogs.PlayqueueDialog in project ListenerMusicPlayer by hefuyicoder.
the class QuickControlsFragment method onPlayQueueClick.
@OnClick(R.id.ic_play_queue)
public void onPlayQueueClick() {
FragmentManager fm = getActivity().getSupportFragmentManager();
if (bottomDialogFragment == null) {
bottomDialogFragment = new PlayqueueDialog();
}
bottomDialogFragment.show(fm, "fragment_bottom_dialog");
if (mSwatch != null) {
bottomDialogFragment.setPaletteSwatch(mSwatch);
}
}
Aggregations