我怀疑这是一个相当简单的概念,但我还没有在互联网上找到答案。
我创建了一个主活动,它使用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's Custom Components教程,但它主要讨论的是改变组件的外观而不是它们的行为,因此我不愿意使用画布。
那么,我将如何实现这一目标呢?
答案 0 :(得分:0)
您可以创建一个Java类MyEditText
来扩展EditText
类。确保提供所有构造函数。
然后让这个类实现TextWatcher
接口并提供所需的实现。
然后,您可以在问题中提到的布局中使用此自定义窗口小部件(自定义EditText),即使用完整的包名称com.example.MyEditText
为了使用TextWatcher,您还可以使用AutoCompleteEditText而不是EditText,您可以更灵活地使用此自定义控件。
答案 1 :(得分:0)
创建MyEditText
,扩展EditText
实现所有构造函数。
然后在类中创建TextWatcher
的实例作为属性,并使用addTextChangedListner
添加侦听器
代码将是这样的
public class MyEditText extends EditText {
TextWatcher textWatcher = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
};
public MyEditText(Context context, AttributeSet attrs) {
super(context, attrs);
addTextChangedListener(textWatcher);
}
}