警报对话框上的自定义键盘

时间:2016-09-22 10:08:13

标签: android keyboard android-alertdialog custom-keyboard

实际上我已经为我的应用程序创建了自定义键盘。它在所有活动的每个屏幕上都能正常工作,但我不知道如何在警告对话框中设置自定义键盘。

我使用下面的代码在活动中调用键盘:

    UserPayAmount.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {

            customFractionalKeyboard= new CustomFractionalKeyboard(VendorPaymentActivity.this, R.id.keyboard_number, R.xml.fractional_keyboard);

            customFractionalKeyboard.registerEditText(R.id.VendorPayAmount);

            return false;
        }
    });

trying to create keyboard on this dialog, above buttons.

0 个答案:

没有答案