I have two edittext one at top and other at bottom.When i type in top edittext, the edittext at bottom gets focus and come up.Is there any way that edittext at bottom does not get focus
Asked
Active
Viewed 337 times
0
-
post ur xml and activity – Kaushik Nov 26 '13 at 09:21
1 Answers
0
in menefest: windowSoftInputMode flag to "adjustPan"
<activity
android:name=".Activity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan">
and on top edittext add requestFocus
<EditText android:id="@+id/ed_temp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"><requestFocus/></EditText>

Rajiv yadav
- 823
- 8
- 24