Back to project page TimeSheets.
The source code is released under:
MIT License
If you think the Android project TimeSheets listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.powerblock.timesheets; /* w w w. j av a2 s. c o m*/ import android.content.Context; import android.util.AttributeSet; import android.widget.EditText; public class CustomEditText extends EditText implements PBSpinner { public CustomEditText(Context context, AttributeSet attrs) { super(context, attrs); } @Override public String getString() { return this.getText().toString(); } @Override public void select(String s) { this.setText(s); } }