现在大多数公司都规定程序员在程序文件的头部加上版权信息,这样每个人写的文件都可以区分开来,如果某个文件出现问题就可以快速的找到文件的创建人,用最短的时间来解决问题,常常是以下格式: //======================================================================// All rights reserved//// description ://// created by User //===
输入手机号码时,自动添加空格,更容易辨别 public class PhoneWatcher implements TextWatcher { private EditText _text; public PhoneWatcher(EditText _text) { this._text = _text; } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @