アプリケーションの編集ボックスに「tingting」と書く必要があります。最初にtingを書き、その後、テキストをコピーして同じ編集ボックスに貼り付けます。しかし、編集テキストの値は「ting ting」です。
.編集テキストから値を取得するときに空白を削除する方法を知っていますが、編集ボックスにテキストを貼り付けるときに空白を削除したいのですが、
どうすればよいですか? 以下は私の編集テキストボックスです。
<EditText
android:id="@+id/list_AddNewtext"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/list_stdcenterelement"
android:imeOptions="actionSend|actionGo|actionDone"
android:inputType="text|textCapWords"
android:padding="5dp"
android:textColor="@android:color/black"
android:textSize="14sp"
android:textStyle="bold"
android:visibility="visible"
android:maxLength="1000" />