Всем привет, мне очень нужно открыть клавиатуру android без потребности xml файла(кроме manifest'а конечно).
Я сам пока нуб в java, работаю в другой среде, и нужно сделать мне расширение которое будет открывать клавиатуру.
Второй день мучаюсь и безрезультатно все(
Буду очень благодарен, если поможете)
Попытки таковы:
Код
package ${YYAndroidPackageName};
import android.util.Log;
import java.io.File;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.lang.String;
import ${YYAndroidPackageName}.R;
import android.content.Context;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import com.yoyogames.runner.RunnerJNILib;
public class Gamecode_Android_Keyboard extends ActionBarActivity {
EditText editInput;
public void show_keyboard(View v){
InputMethodManager mgr=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.showSoftInput(editInput,InputMethodManager.SHOW_IMPLICIT);
}
/*public void show_keyboard(){
EditText txtName = (EditText) findViewById(R.id.txtName);
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
inputMethodManager.showSoftInput(txtName, InputMethodManager.SHOW_IMPLICIT);
return txtName;
}*/
}