use of org.prebid.mobile.drprebid.ui.dialog.InputDialog in project prebid-mobile-android by prebid.
the class PrebidServerSettingsViewholder method openInputDialog.
private void openInputDialog(String title, int type, int format, boolean shouldShowQrScanner) {
FragmentManager fragmentManager = ((AppCompatActivity) itemView.getContext()).getSupportFragmentManager();
InputDialog dialog = InputDialog.newInstance(title, type, format, shouldShowQrScanner);
dialog.show(fragmentManager, InputDialog.TAG);
}
Aggregations