Android 中发送和接收短信
2010-05-10 19:44:00 来源:WEB开发网Android 中发送和接收短信
在做Android开发中经常要用到短信的发送和短信的接收,调用Android提供的api实现起来很简单,今天要用到这个功能研究了一下顺便写下来加强一下记忆。
1.首先创建一个Android Project
2.设计一个main Activity作为发短信的操作界面,设计好的界面图如下:
界面布局的文件内容如下:
1: < ?xml version="1.0" encoding="utf-8"? >
2: < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3: android:orientation="vertical"
4: android:layout_width="fill_parent"
5: android:layout_height="fill_parent"
6: android:padding="10sp"
7: >
8: < TextView
9: android:layout_width="fill_parent"
10: android:layout_height="wrap_content"
11: android:text="@string/mobile_label"
12:
13: / >
14: < EditText
15: android:layout_width="fill_parent"
16: android:layout_height="wrap_content"
17: android:id="@+id/txt_from"
18: android:hint="请输入电话号码"
19:
20: / >
21: < TextView
22: android:layout_width="fill_parent"
23: android:layout_height="wrap_content"
24: android:text="@string/content_label"
25: / >
26: < EditText
27: android:layout_width="fill_parent"
28: android:layout_height="wrap_content"
29: android:id="@+id/txt_content"
30: android:hint="请输入短信内容"
31: android:lines="3"
32: / >
33: < TextView android:layout_width="fill_parent"
34: android:layout_height="wrap_content"
35: >< /TextView >
36: < Button
37: android:text="发送短信"
- ››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字符串的互相转换
更多精彩
赞助商链接