telephonyservicedemo.java

来自「Android系统服务开发」· Java 代码 · 共 31 行

JAVA
31
字号
package foolstudio.demo.sys;

import android.telephony.TelephonyManager;

public class TelephonyServiceDemo {

	public static String getInfo(TelephonyManager service) {
		// TODO Auto-generated method stub
		StringBuffer sb = new StringBuffer();
		
		/*
		service.getCallState();
		service.getCellLocation();
		service.getDataActivity();
		service.getDataState();
		service.getDeviceId();
		service.getDeviceSoftwareVersion();
		service.getLine1Number();
		service.getNeighboringCellInfo();
		service.getNetworkCountryIso();
		service.getNetworkOperator();
		service.getNetworkOperatorName();
		service.getNetworkType();
		service.getSimCountryIso();
		*/
		
		return (sb.toString() );
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?