Android 测试工具类
2010-02-09 03:51:00 来源:WEB开发网这是Unlocking Android 这本书Sample的代码。直接上代码
package com.msi.manning.telephonyexplorer;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.telephony.gsm.GsmCellLocation;
import android.util.Log;
import android.widget.TextView;
public class TelephonyManagerExample extends Activity {
private TextView telMgrOutput;
@Override
public void onCreate(final Bundle icicle) {
Log.d(Constants.LOGTAG, "TelephonyManagerExample onCreate");
super.onCreate(icicle);
this.setContentView(R.layout.telmgrexample);
this.telMgrOutput = (TextView) this.findViewById(R.id.telmgroutput);
}
@Override
public void onStart() {
super.onStart();
// TelephonyManager
final TelephonyManager telMgr = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
this.telMgrOutput.setText(telMgr.toString());
// PhoneStateListener
PhoneStateListener phoneStateListener = new PhoneStateListener() {
@Override
public void onCallStateChanged(final int state, final String incomingNumber) {
TelephonyManagerExample.this.telMgrOutput
.setText(TelephonyManagerExample.this.getTelephonyOverview(telMgr));
Log.d(Constants.LOGTAG, "phoneState updated - incoming number - " + incomingNumber);
}
};
telMgr.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
String telephonyOverview = this.getTelephonyOverview(telMgr);
this.telMgrOutput.setText(telephonyOverview);
}
@Override
public void onPause() {
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接