I have two EditText . In first EditText i put the input and I dont want to give any inputs in the second EditText. If i press next android by default goes to that 2nd EditText to get inputs? But i dont want it as i am showing my output in the EditText. can anyone tell me how to skip one EditText? That means if press Next it doesnt go to the second edittext. it goes suppose in the buttons.
<EditText
android:id="@+id/etConvertFrom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="numberDecimal" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/etToResult"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="numberDecimal" />