I have a multi lines editText:
<EditText
android:id="@+id/et1"
android:imeOptions="actionDone"
android:layout_width="300sp"
android:layout_height="90sp"
android:layout_marginTop="5dp"
android:layout_marginLeft="5dp"
android:layout_marginBottom="5dp"
android:background="@drawable/edittext_bg_white"
android:ems="10"
android:inputType="textMultiLine"
android:lines="8"
android:minLines="6"
android:textSize="18sp"
android:layout_gravity="left"
android:gravity="top|left"
/>
- I add a text of 4 lines inside the EditText.
- I double click on the text and the cut/copy/selectall bar shows.
- I click on the SELECT ALL Icon in the cut/copy/selectall bar.
- The bar dissapears (letting the activity more place), so now I can not copy/cut anything, and that's exactly the problem: I do want to copy what I have just selected.
I will appreciate any help.