-
bookreaderactivity
这是我上个月份编写的一份android平台下的txt文本阅读器的工程代码。若对此有兴趣者可以这份代码为基础开始学习。(This is a text reader s code for txt files on android platform.Anyone who is interested in it can study it according to this code.)
- 2012-11-14 21:04:19下载
- 积分:1
-
AccountSetupIncoming
Account Setup Incoming for Andriod.
- 2013-10-06 00:35:28下载
- 积分:1
-
封装MDB纸币硬币器操作(android版)
android 串口通信,封装MDB指令,Android API 19测试通过,售货机上使用,搭配android APP界面
- 2022-03-24 18:23:34下载
- 积分:1
-
android-IM
一个安卓开发的即时通信客户端和服务器端软件。(android client and java sever IM)
- 2014-03-31 16:08:12下载
- 积分:1
-
android_capture
基于android手机的远程视频监控系统
有安卓手机端和pc服务器端
可以通过网络将手机摄像头捕捉到的数据传送到pc端以图片显示(Andrews mobile terminal and PC server-side remote video surveillance system based on android phone through the network to the mobile phone camera to capture the data transfer to the pc end display pictures)
- 2013-03-27 18:00:04下载
- 积分:1
-
Android的Flash应用程序
通过使用这个应用程序,我们可以学习如何读取绘制在Android应用程序的文件。在本申请中,我们可以通过采取支持字符串缓冲区类的读取日期。
- 2022-06-16 08:15:32下载
- 积分:1
-
android 转盘抽奖源码(原生态)下载
android 转盘抽奖源码(原生态)下载
- 2015-03-06下载
- 积分:1
-
MyAppWeixin
仿微信界面,有摇一摇功能,此款软件用来学习android非常有用。(Imitation of micro letter interface, a wave function, this software is very useful to study the android.
)
- 2013-08-11 20:24:27下载
- 积分:1
-
自己开发的Android 直接发送短信方法附上代码
这是一个自己开发的Android 直接发送短信方法附上代码,Android 发短信功能,包括了对内容合法性的验证,发送完成弹出提示。自己开发的直接发送短信的方法:
private void sendSMS(String telNo,String smsStr,View v){
PendingIntent pi=
PendingIntent.getActivity(this, 0, new Intent(this,Sample_11_1.class), 0);
SmsManager sms=SmsManager.getDefault();
sms.sendTextMessage(telNo, null, smsStr, pi, null);
//短信发送成功给予提示
Toast.makeText(
Sample_11_1.this, //上下文
"恭喜你,短信发送成功!", //提示内容
5000 //信息显示时间
).show();
v.setEnabled(true);//短信发送完成后恢复发送按钮的可用状态
}
对手机号码和短信内容的验证部分:
//获取输入的电话号码
EditText etTel=(EditText)findViewById(R.id.EditText02);
String telStr=etTel.getText().toString();
//获取输入的短信内容
EditText etSms=(EditText)findViewById(R.id.EditText01);
String smsStr=etSms.getText().toString();
//判断号码字符串是否合法
if(PhoneNumberUtils.isGlobalPhoneNumber(telStr)){//合法则发送短信
v.setEnabled(false);//短信发送完成前将发送按钮设置为不可用
sendSMS(telStr,smsStr,v);
}
else{//不合法则提示
Toast.makeText(
Sample_11_1.this, //上下文
"电话号码不符合格式!!!
- 2022-08-23 23:05:12下载
- 积分:1
-
listview 滑动分页示例源码
android 滑动分页
- 2014-04-13下载
- 积分:1