input text android xml code example
Example 1: android java text fields
EditText usernameEditText = (EditText) findViewById(R.id.Plain textid);
Example 2: java android edit text set value
EditText bookInput = (EditText)findViewById(R.id.book);
bookInput.setText("The Shining");