In your case, you cannot simply "configure the Resize" window. Also, when you want to show buttons when you click the last edit text.
So, you can try this approach, not the truly proposed one, but will work for your scenario:
@Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity_mainf); findViewById(R.id.editAdditionalInfo).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(sampleMediaPlayer.this, "text", 700).show(); findViewById(R.id.btnBackCustomerDetails).requestFocusFromTouch(); findViewById(R.id.editAdditionalInfo).requestFocusFromTouch(); } }); }
source share