<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_Division"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp">
<com.efftronics.android.eEmployee.Common.UI.CustomAutoCompleteTextView
android:id="@+id/actventryDivName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/station"
android:maxLength="250"
app:hintTextAppearance="@style/AutocompleteTheme"
android:longClickable="false"
android:theme="@style/AutocompleteTheme"
android:singleLine="true"
android:imeOptions="actionNext"/>
</android.support.design.widget.TextInputLayout>
Eventhough I made the longclickable false to the textinputLayout, It will display the cut, copy, share options. Why?
I dont need these options. What can I do? Any help would be appreciated.