Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public String configName(){
  2. EditText editText = (EditText) findViewById(R.id.editName);
  3. String name = editText.getText().toString();
  4. if(name.equals("")){
  5. name = "Customer";
  6. }
  7. return name;
  8. }
Add Comment
Please, Sign In to add comment