EditText自定义字符串格式

时间:2013-08-19 02:07:49

标签: android format android-edittext

我搜索了与我的问题类似的每个问题,但没有得到它的工作。我的问题是:

我想在输入时格式化EditText中的字符串。格式是这样的(它总是一个19位的数字):

012345 01 0123456789 0

正如您所看到的,我想在用户输入时根据需要添加空格。我知道我必须使用TextWatcher,但我所做的一切都没有得到我想要的东西。

修改

以下是我上次尝试的代码:

        @Override
        public void afterTextChanged(Editable s) {
           if(s.length() == 7 || s.length() == 10 || s.length() == 21){
                editText.removeTextChangedListener(this);
                String newValue;
                newValue= s.insert((s.length()-1), " ").toString();
                //Log.d("AFTER",newValue);
                editText.setText(newValue);
                editText.setSelection(newValue.length());
                editText.addTextChangedListener(this);
            }
        }

1 个答案:

答案 0 :(得分:10)

在这里你可以使用它。

<强> main.xml中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<EditText 
    android:id="@+id/editText"   
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:digits="0123456789"
    android:inputType="number" />
</LinearLayout>

<强> MainActivity.java:

public class MainActivity extends Activity {

    int textlength = 0;
     EditText editText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


         editText = (EditText)findViewById(R.id.editText);

            editText.addTextChangedListener(new TextWatcher()
            {

             public void afterTextChanged(Editable s)
             {

             }

             public void beforeTextChanged(CharSequence s, int start,
              int count, int after)
             {

             }

             public void onTextChanged(CharSequence s, int start,
              int before, int count)
             {


              String text = editText.getText().toString();
          textlength = editText.getText().length();

          if(text.endsWith(" "))          
              return;

          if(textlength == 7 || textlength == 10 || textlength == 21)
          {
            editText.setText(new StringBuilder(text).insert(text.length()-1, " ").toString());
              editText.setSelection(editText.getText().length());
          }

             }});

    }
}

通过这种方式,我设法以特定的间隔在数字之间添加空格。

注意:我在edittext中添加了额外的功能,因此只能输入数字,同时默认情况下只会弹出数字键盘。有关用户输入类型的更多信息,this可能会对您有所帮助。