-
Android
- 2022-03-19 11:01:24下载
- 积分:1
-
tesseract-android-tools-test
tesseract-android-tools-test
- 2013-07-09下载
- 积分:1
-
Android 倒计时自动获取短信验证码并填入文本框
Android 倒计时自动获取短信验证码并填入文本框,本测试中的短信验证码内容 验证码是6位数字的格式,模拟用户发送验证码请求,然后倒计时,然后开始监听短信广播,得到短信的内容,接受来自服务器 : "+SERVICECHECKNUM+" 短信的6位验证码,然后用JAVA中的正则来匹配短信中连续的6个数字(验证码等),取出这些数字填充到输入框中,从用户操作的角度来看,这个功能很人性化,也使程序智能化和专业化。
- 2022-03-04 15:35:12下载
- 积分:1
-
android 文件管理器 源码下载
android 文件管理器 源码下载
- 2014-10-23下载
- 积分:1
-
Android 二维码 生成和识别 实例源码下载
Android 二维码 生成和识别 实例源码下载
- 2013-10-23下载
- 积分:1
-
Android-jiugongge
android九宫格代码实现 详细设计实现说明(android android squared squared code code)
- 2013-08-17 13:05:41下载
- 积分:1
-
Link
自己开发的连连看游戏android程序。仅供学习参考
(Lianliankan game developed the android procedures. Only to learn reference)
- 2012-07-09 17:19:52下载
- 积分:1
-
LinkGame
说明: 能实现电脑端双人连连看游戏,里面已设置好关卡,只有在规定时间内通过游戏关卡才能进入下一关,否则游戏失败,同时进行倒计时。(It can realize the double-player continuous watching game on the computer side. The game has been set up a checkpoint. Only through the game checkpoint in the prescribed time can we enter the next level, otherwise the game will fail and the countdown will be made at the same time.)
- 2019-04-03 15:34:59下载
- 积分:1
-
Android Intent开发实例
Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
- 2014-11-24下载
- 积分:1
-
人脸检测
在安卓系统中实现此程序检测人脸图片中 ; 这是一个简单的代码与 android 平台。
- 2022-05-24 03:40:04下载
- 积分:1