我怀疑这是一个相当简单的概念,但我还没有设法在互联网上找到答案。
我创建了一个主要活动,它使用 TextWatcher 格式化 EditText 内的输入:
public class MainActivity extends Activity implements TextWatcher {
EditText text;
int textCount;
String numba1, numba, n;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
text = (EditText)findViewById(R.id.editText1);
text.addTextChangedListener(this);
}
/* TextWatcher Implementation Methods */
public void beforeTextChanged(CharSequence s, int arg1, int arg2, int after) {
// Does Nothing
}
public void onTextChanged(CharSequence s, int start, int before, int end) {
//Does random stuff with text
}
public void afterTextChanged(Editable s) {
//Does much more random stuff with text
}
protected void onResume() {
super.onResume();
SharedPreferences prefs = getPreferences(0);
String restoredText = prefs.getString("text", null);
if (restoredText != null) {
text.setText(restoredText, TextView.BufferType.EDITABLE);
int selectionStart = prefs.getInt("selection-start", -1);
int selectionEnd = prefs.getInt("selection-end", -1);
if (selectionStart != -1 && selectionEnd != -1) {
text.setSelection(selectionStart, selectionEnd);
}
}
}
protected void onPause() {
super.onPause();
SharedPreferences.Editor editor = getPreferences(0).edit();
editor.putString("text", text.getText().toString());
editor.putInt("selection-start", text.getSelectionStart());
editor.putInt("selection-end", text.getSelectionEnd());
editor.commit();
}
接下来,我想在我的项目中多次重复使用它,所以想创建一个自定义的 EditText 控件,它看起来就像原来的一样,但会执行所有的格式设置并保存首选项。
理想情况下,我可以只使用 xml 来显示自定义 EditText:
<view
class="com.android.example.myEditText"
id="@+id/editText" />
我已经阅读了Android 的自定义组件教程,但它主要讨论的是改变组件的外观,而不是它们的行为,所以我不愿意使用画布。
那么,我将如何实现这一目标?