Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,20 @@ protected void onDraw(Canvas canvas) {
invalidate();
}
}


public void setText(String text) {
textButton.setText(text);
}

public void setTextColor(int color) {
textButton.setTextColor(color);
}

public TextView getTextView() {
return textButton;
}

public String getText() {
return textButton.getText().toString();
}
}