I have a edittext on my view. For some reason I am not able to backspace or enter.
I am able to type, but i can not backspace. Here is my xml code
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/command"
android:imeOptions="actionGo"
android:inputType="text"
android:layout_below="@+id/spower"
android:layout_toEndOf="@+id/sp_test"/>
All i have in my java code about the edittext is a if/else statement.
So i can't figure out why i can't hit enter or delete?