when testing my application on my tablet (Android 4.1.1 Asus), I find out that my bluetooth keyboard is not supported on my edittext. No input! Using the soft keyboard is not a problem.
This is my layout:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <EditText android:layout_width="match_parent" android:id="@+id/txtTuneScript" android:layout_height="match_parent" android:layout_weight="1" android:scrollbars="vertical" /> </LinearLayout>
Am I missing an attribute for editText? Any ideas? Using another application on the tablet, such as droidEdit, the bluetooth keyboard works great ...
source share