Quantcast
Channel: Android Mode - Processing 2.x and 3.x Forum
Viewing all articles
Browse latest Browse all 941

procesing android mode getSystemService gives me an error

$
0
0

import android.view.inputmethod.InputMethodManager; import android.content.Context;

void showVirtualKeyboard() { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);

} void hideVirtualKeyboard() { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0); }

void setup(){

} void draw() {

}


Viewing all articles
Browse latest Browse all 941

Trending Articles