-
Android 指定手机号的手机震动模式自定义实例.rar下载
资源介绍
Android 指定手机号的手机震动模式自定义实例,请看以下的代码片段:
RadioButton rbMeeting;//会议模式
RadioButton rbNormal;//正常模式
Button bAdd;//添加按钮
EditText et;//输入框
TextView tv;//显示文本框
List number;//存放电话号码
Vibrator vibrator;//手机震动引用
StringBuilder sb=new StringBuilder();
int count;//计数器
setContentView(R.layout.main);//设置当前界面
rbMeeting=(RadioButton)this.findViewById(R.id.RadioButton01);//会议模式
rbNormal=(RadioButton)this.findViewById(R.id.RadioButton02);//正常模式
bAdd=(Button)this.findViewById(R.id.Button01);//添加按钮
et=(EditText)this.findViewById(R.id.EditText01);//输入框
tv=(TextView)this.findViewById(R.id.TextView02);//显示文本框
rg=(RadioGroup)this.findViewById(R.id.RadioGroup01);//RadioButton按钮组
number=new ArrayList();
vibrator=(Vibrator)getApplication().getSystemService(Service.VIBRATOR_SERVICE);//创建Vibrator对象
myPhoneStateListener mPSL=new myPhoneStateListener();//创建对象
TelephonyManager tm=(TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);//创建TelephonyManager对象
tm.listen(mPSL, PhoneStateListener.LISTEN_CALL_STATE);//添加监听器