Android基础教程之SMS简单发送短信程序
2010-07-15 21:01:00 来源:WEB开发网smsManager.sendTextMessage(messageAddress, null, messageContent, pintent, null);
}catch(Exception e)
{
e.printStackTrace();
}
//提示发送成功
Toast.makeText(SMSDemo.this, "发送成功", Toast.LENGTH_LONG).show();
}
else{
Toast.makeText(SMSDemo.this, "发送地址或者内容不能为空", Toast.LENGTH_SHORT).show();
}
}
});
}
}
Step 4:增加拨打电话权限AndroidManifest.xml代码如下:
< ?xml version="1.0" encoding="utf-8"?>
< manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.test"
android:versionCode="1"
android:versionName="1.0">
< application android:icon="@drawable/icon" android:label="@string/app_name">
< activity android:name=".SMSDemo"
android:label="@string/app_name">
< intent-filter>
< action android:name="android.intent.action.MAIN" />
< category android:name="android.intent.category.LAUNCHER" />
< /intent-filter>
< /activity>
< /application>
< uses-sdk android:minSdkVersion="3" />
< uses-permission android:name="android.permission.SEND_SMS">
< /manifest>
1.第一个模拟器,我们通过IDE编辑器—eclipse启动。
具体方法是:打开你的eclipse,随便运行一个项目。若是你的eclipse第一次使用,新建一个项目(譬如那个经典的“hello world”),然后运行它。Eclipse会帮你启动我们的第一个android模拟器。ID为5554.
2. 第二个模拟器,我们通过DOS命令启动。具体方法:“开始”-“运行”-“CMD”,确定或回车键。打开一个命令行窗口。然后cd 命令到你的android SDK目录的tools文件夹下面,
输入emulator -data foo 回车。稍等片刻,系统即可帮你启动又一个新的android模拟器。ID为5556.
赞助商链接