-
安卓截屏代码
资源描述安卓简单截屏代码~!能给需要的开打折提供信息
- 2023-04-02 09:05:03下载
- 积分:1
-
electronic-organ-Android
这是一个很经典的关于电子琴的作业,是学习安卓的一个很好的例程,使我们上课的时候老师让我们做的,可以运行的。(This is a classic on the keyboard operation, Andrews is a good learning routines, so that our class when the teacher asked us to do, you can run.)
- 2020-06-30 09:20:01下载
- 积分:1
-
基地对 Java 的音乐播放器
这是一个Java程序。音乐播放器与现场标题。它使用JMF来播放音乐。它具有快退和快进功能,是基础上的线程。这个音乐播放器具有实时和透明的标题印在了桌面上。
- 2022-01-26 06:12:05下载
- 积分:1
-
Abstract Syntax Tree
该项目用于使用JAVA编程语言为指定语法创建抽象语法树。这个抽象语法树是使用JLEX和CUP构建的
- 2022-01-28 11:51:23下载
- 积分:1
-
android通过拍照、相册获取图片并显示 实例完整源码下载(亲测通过)
其中也包含了 将图片保存至 sd卡功能
- 2015-02-06下载
- 积分:1
-
javaSE冒泡排序控制台流程详解
public class NumsI{
public static void main (String [] arge){
//定义一个
int 的数具类型数组 nums,并赋予初始值;
int[] nums = new int[]{12,24,34,14,45,17,65,51,25};
//提示排序方式并用迭代输出数组初始状态;
System.out.println("冒泡排序演示");
System.out.print("初始数据 ");
for (int num :nums){
System.out.print(num + " ");
}
System.out.println();
//设置一个循环,用来记录比较轮数;
for (int i = 0; i <
nums.length-1; i++ ){
//设置一个循环,记录该轮比较中的比
较次数;
for(int j =0;j < nums.length-1-i; j++){
//用 nums[] 数组中前面的值与它后面的值比较
,如果后面的值比它大就执行下面代码块;
- 2023-03-29 13:15:04下载
- 积分:1
-
本地视频录制,自动对焦,焦距,分辨率设置
本地视频录制,自动对焦,焦距,分辨率设置
- 2014-12-15下载
- 积分:1
-
java手写体数字识别
手写体数字识别,用Java做的GUI,数字的识别率很高,很适合学初学Java的同学学习
- 2023-04-01 13:00:04下载
- 积分:1
-
java邮件客户端
基于java语言的eclipse邮件客户端,使用IMAP/APOP/POP3/SMTP/ESMTP/协议收发电子邮件的软件。用户不需要登入邮箱就可以收发邮件。实现了邮件的接收,发送,删除,以及附件的发送,下载等等功能,是一款不错的java语言和网络学习系统。
- 2022-02-14 00:01:48下载
- 积分:1
-
listviewheSQLitezhishi
注意:本项目是基于android studio开发的,eclipse可能无法直接使用。
本项目是一个简单的基于安卓的记事本项目源码,添加或删除数据的时候会出现显示bug(实际数据不会受到影响),bug体现在添加或删除一条数据以后会在listview里面会展示复制一遍操作后的数据。而不会清除原有的列表文本。新手朋友可以拿这个项目来试试手感,顺便看看能不能独立解决这个问题。
本项目涉及的知识点有:
1、SQLite的基本使用,增删查改
2、listview,adapeter的基本使用
3、activity生命周期
4、intent、bundle传递参数
5、AlertDialog的基本使用(Note: this project is based on the development of studio eclipse, Android may not be able to directly use.
This project is a simple Notepad program source code based on Android, add or delete data will appear when the display bug (actual data will not be affected), bug reflected in add or remove a data will be in inside the listview will show copy again after the operation data. And will not clear the original list of text. Novice friends can take this project to try to feel, by the way to solve this problem can not be solved independently.
The knowledge points involved in this project are:
1, the basic use of SQLite, CRUD
2, listview, the basic use of adapeter
3, activity life cycle
4, intent, bundle transfer parameters
5, the basic use of AlertDialog)
- 2016-07-25 11:25:09下载
- 积分:1