Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

Commit

Permalink
added setText method
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Aug 25, 2020
1 parent 90ae016 commit 61dd5b0
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1480,6 +1480,14 @@ public EditText getEditText()
return editText;
}

public void setText(String text)
{
if (this.editText != null)
{
editText.setText(text);
}
}

private void setEditText(EditText editText)
{
// If we already have an EditText, throw an exception
Expand Down

0 comments on commit 61dd5b0

Please sign in to comment.