I have the following code based on the example shown at Android devloper website
final EditText idInput = new EditText(this);
idInput.setHeight(50);
idInput.setWidth(winSize.x / 4);
idInput.setHint("enter ID");
idInput.setVisibility(0x00);
idInput.setOnKeyListener(new OnKeyListener()
{
public boolean onKey(View v, int keyCode, KeyEvent event)
{
// If the event is a key-down event on the "enter" button
if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
(keyCode == KeyEvent.KEYCODE_ENTER))
{
// Perform action on key press
Toast.makeText(MainActivity.this, idInput.getText(), Toast.LENGTH_SHORT).show();
idInput.setVisibility(0x04);
return true;
}
return false;
}
});
The code receives input from the edittext and shows it in a toast as expected. My problem is that I can not control the size of the EditText. It fills my whole screen. Is there a way of setting the size of the TextView. I am not having any issue with other View object that I display.
(judging from the number of EditText questions on here is is not as simple as it should be)