I have an edit text box and my own layout for keyboard, I prevented the popping up of default keyboard using this link
but it is disabling the cursor and click on the edit text which i want for copy paste . Please help .
I have an edit text box and my own layout for keyboard, I prevented the popping up of default keyboard using this link
but it is disabling the cursor and click on the edit text which i want for copy paste . Please help .
try this..
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editTextField.getWindowToken(), 0);
Write this in your AndroidManifest.xml
<activity
android:name="com.example.LiveStreamActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/title_activity_live_stream"
android:screenOrientation="landscape"/>