安卓实训报告
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实习报告书
专业计算机科学与技术
系别
报告题目安卓
报告人班级
指导教师带队教师
实习时间实习地点
教务处监制
短信功能
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/input_phone_number" /> android:id="@+id/etPhoneNumber" android:layout_width="fill_parent" android:layout_height="wrap_content" android:phoneNumber="true" /> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/input_sms_content" /> android:id="@+id/etSmsContent" android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="textMultiLine" android:minLines="5" />
package com.yj.sms.activity;
import java.util.ArrayList;
import android.app.Activity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class SmsSendActivity extends Activity {
// 发送短信,将分割后的短信逐条发送
for(String sms : smss) {
// 发送短信
smsManager.sendTextMessage(phoneNumber, null, sms, null, null) ;
}
Toast.makeText(SmsSendActivity.this, R.string.send_success,
Toast.LENGTH_SHORT).show() ;
}
}
}
界面如下:
3、SD卡读写文件
代码如下:
读取文件
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/input_file_name" /> android:layout_width="fill_parent" android:layout_height="wrap_content" />