私のコードは次のとおりです。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="53dp"
android:layout_marginTop="34dp"
android:inputType="textNoSuggestions|text"/>
</RelativeLayout>
私が使用するJAVAコード。
editText = (EditText) findViewById(R.id.editText);
editText.setInputType(InputType.TYPE_MASK_CLASS|InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
EditText でandroid:inputType="textNoSuggestions|text"を使用して、すべてのデバイスで無効になっている予測テキストを使用しますが、Samsung Tab 2では機能しません。私もAndroidコードを介して適用しますが、 Samsung Tab 2でこの予測テキストボックスを無効にするための他の提案が開かれているようです.
他のデバイスのプレビューでは、予測テキスト ボックスが表示されません。
Samsung Tab 2 のプレビューで、予測テキスト ボックスが表示されます。