WEB开发网
开发学院手机开发Android 开发 Android 中发送和接收短信 阅读

Android 中发送和接收短信

 2010-05-10 19:44:00 来源:WEB开发网   
核心提示:Android 中发送和接收短信在做Android开发中经常要用到短信的发送和短信的接收,调用Android提供的api实现起来很简单,Android 中发送和接收短信,今天要用到这个功能研究了一下顺便写下来加强一下记忆,1.首先创建一个Android Project2.设计一个main Activity作为发短信的操

Android 中发送和接收短信

在做Android开发中经常要用到短信的发送和短信的接收,调用Android提供的api实现起来很简单,今天要用到这个功能研究了一下顺便写下来加强一下记忆。

1.首先创建一个Android Project

2.设计一个main Activity作为发短信的操作界面,设计好的界面图如下:

image

界面布局的文件内容如下:

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="发送短信"

1 2 3 4  下一页

Tags:Android 发送 接收

编辑录入:coldstar [复制链接] [打 印]
赞助商链接