-
Monkey
android上的MONKEY测试的使用方法(android the MONKEY test on the use of)
- 2012-05-28 23:48:36下载
- 积分:1
-
android校园一卡通系统
android校园一卡通系统,经典案例
android校园一卡通系统,经典案例
android校园一卡通系统,经典案例
android校园一卡通系统,经典案例
android校园一卡通系统,经典案例
- 2022-11-07 16:55:08下载
- 积分:1
-
Android 演示Socket通信的例子 包括了服务器端代码
Android 演示Socket通信的例子 包括了服务器端、客户端代码,以及测试的主程序。在本实例中,演示了采用两种方法实现添加线程,演示了Socket通信的建立方法,在客户端中连接到本机的端口号是5500,测试将数据输入流、输出流连接到socket,在输入测试时,输入半径数值发送到服务器,输入bye结束,程序会反复读用户数据并计算,服务端线程将监听是否有客户端连接到服务器了。
注意两种按键监听的写法,一种需要执行OnClickListener接口,btnOut.setOnClickListener(this);并且重写 @Override,另一种是:rev.setOnClickListener(new receiverlistenr());需要写内部类:class receiverlistenr implements OnClickListener。控件的设置不能在子线程中操作,需要在主线程中。
- 2022-06-19 12:32:46下载
- 积分:1
-
语音识别转文字实例源码(基于科大讯飞)
讯飞语音云语音听写学习Demo,可以实现简单的语音识别以及合成。将人说话的声音转化为文字,并且可以根据文字合成语音朗读出来。简单可用,方便移植。比官方Demo简化了很多。
- 2019-10-30下载
- 积分:1
-
安卓系统银行
这是 Android 银行代码使用您可以管理所有银行的东西。
你可以找到你每月的报表和所有
- 2022-07-07 16:25:47下载
- 积分:1
-
Ch15_HelloSQlite
android studio 环境下,SQLite数据库的使用源码,包括数据的添加、删除、查询等操作(Android studio environment, the use of SQLite database source, including data addition, deletion, query and other operations)
- 2018-03-26 09:06:30下载
- 积分:1
-
红包软件(附有源代码)
简单的后台手机抢红包软件,附有源代码。感兴趣的可以下下来玩玩,当然也可以提点建议!(Simple mobile phone grab red envelopes software, with source code.)
- 2017-08-01 12:39:52下载
- 积分:1
-
简单线程并发例子源代码
package com;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;public class VolatileTest {public static void main(String[] args) throws InterruptedException {final Counter counter = new Counter();ExecutorService threadPool = Executors.newCachedThreadPool();for (int i = 0; i < 1000; i++) {/*new Thread() {@Overridepublic void run() {counter.inc();};}.start();*/threadPool.execute(new Runnable() {@Overridepublic void run() {counter.inc();}});}// Thread.sleep(3000);System.out.println(counter);}}
- 2022-06-17 11:34:35下载
- 积分:1
-
Prototype
取代办公部门外出工作时需要笔录,这款APP上,可以将所有的操作电子化,本源码只是一些思路,和一些个性化的页面控件(Instead of taking notes when law enforcement departments used to work, this APP can make all operations electronic. The source code is just some ideas, and some personalized page controls.)
- 2020-06-19 10:40:02下载
- 积分:1
-
实现选择图片并裁剪
在android开发中需要用到裁剪图片的功能,比如自定义头像,代码中是一个从图库中选择图片文件并实现裁剪的代码示例。
- 2022-05-10 14:36:18下载
- 积分:1