-
gomoku-master
android game The name "Gomoku" is from the Japanese language, in which it is referred to as gomokunarabe . Go means five, moku is a counter word for pieces and narabe means line-up. The game is also popular in Korea, where it is called omok which has the same structure and origin as the Japanese name. It is said to have originated in China with the name Wu Zi Qi . In the nineteenth century, the game was introduced to Britain where it was known as Go Bang, said to be a corruption of the Japanese word goban, said to be adopted from Chinese k i pan chess-board.
- 2014-03-22 16:20:19下载
- 积分:1
-
android listview 通用adapter
android listview 通用adapter 只需要集成commenAdapter即可 在viewholder中就可以进行内容设置
- 2023-08-12 03:35:03下载
- 积分:1
-
深入理解Android卷1(邓凡平)
深入理解Android卷1(邓凡平):这是一本以情景方式对Android的源码进行深入分析的书(Deep Understanding Android)
- 2018-05-22 15:21:39下载
- 积分:1
-
service
使用Android连接service服务器并返回的方法。提供一种解决方案。(Use Android to connect to the service server and return the method.)
- 2018-12-19 17:55:33下载
- 积分:1
-
Android 五子棋
Android五子棋,使用我们很多学生论文(android Five chess for us ,is good for us)
- 2011-12-17 13:11:24下载
- 积分:1
-
手势中的应用
Android 的手势的应用程序,这个应用程序是帮助写注意它因此为提高此应用程序与此模型中的开放源码的代码我想向这提交的应用程序开发所有的安卓开发者基于触摸屏幕文字在屏幕上
- 2022-01-25 14:59:41下载
- 积分:1
-
语音识别,根据语音,执行对应操作
语音识别,根据语音,执行对应操作语音识别。根据语音,执行对应操作语音识别。根据语音,执行对应操作语音识别。根据语音,执行对应操作语音识别。根据语音,执行对应操作语音识别。根据语音,执行对应操作
- 2023-03-05 23:15:04下载
- 积分: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
-
RCGLZJ
支持Android应用案例开发大全,配套丛书下载!(Support Android Applications Development Guinness, matching books to download!)
- 2014-03-24 16:44:30下载
- 积分:1
-
APII
Android应用,个人生活助手类,支持天气地点照片等状态显示与分享至微信朋友圈(Android applications, personal life helper classes to support weather locations and sharing photos and status display to the micro-channel circle of wechat)
- 2013-12-01 01:42:24下载
- 积分:1