Android -- 零散记录[短信发送,系统拨号,单元测试]
1.调用系统的拨号:
LogTest.javapackage org.hs;import android.test.AndroidTestCase;import android.util.Log;public class LogTest extends AndroidTestCase {private static final String TAG="LogTest";//shift+crtl+s 小写变大写public void testOne() throws Exception{int i=1+1;Log.i(TAG, "result="+i);}}