Sanjeev Hegde
Results
2
comments of
Sanjeev Hegde
I had the same Issue, the problem occured when I used metamask (plugin) with `cacheProvider: true `. If you have connected to metamask atleast once, you need to clear your...
I was able to update edit text like this. Get keyboard on EditText onclick ``` InputMethodManager imm = (InputMethodManager) getSystemService(getApplicationContext().INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0); // imm.showSoftInput seems to be not working ``` Get...