use of chat.rocket.android.widget.internal.ExtraActionPickerDialogFragment in project Rocket.Chat.Android by RocketChat.
the class RoomFragment method showExtraActionSelectionDialog.
private void showExtraActionSelectionDialog() {
final DialogFragment fragment = ExtraActionPickerDialogFragment.create(new ArrayList<>(extraActionItems));
fragment.setTargetFragment(this, DIALOG_ID);
fragment.show(getFragmentManager(), "ExtraActionPickerDialogFragment");
}
Aggregations