0

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

Agr1909
  • 385
  • 1
  • 5
  • 17

1 Answers1

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