-
InteractiveSVG
交互式SVG图形demo的源代码,主要是网页设计前端功能(SVG demo)
- 2014-02-17 20:54:20下载
- 积分:1
-
Struts2.1.6+Struts2.0+Hibernate3.1整合示例
环境:Windows XP SP3、JDK 6、Android SDK 3.0、Eclipse-galileo 3.4
使用步骤:
1、下载解压之后,使用IDE导入工程
2、创建android 2-2 AVD
3、运行configuration
4、分别根据luanch按钮来选择三个动画方式
5、如果一切正常,那么可以分别看到帧动画(frame-by-frame)、布局动画(layout animation)和视图动画(view animation)
目的:动画效果可以让用户的体验感非常好。在“演示Android中的文字和图片特效控件的使用”资源中,讲是的TextSwitcher控件、Gallery控件和ImageSwitcher控件的特效实现。而这个资源演示的是android的动画编程,本示例针对图片和ListView控件实现动画。本人觉得,这两个资源具有非常的实践意义。
阅读对象:android应用开人员
- 2022-03-11 06:20:51下载
- 积分:1
-
java写的局域网广播系统.本软件包括2个部分:局域网广播系统――服务端,局域网广播系统――接收端,服务端是通过网络连接,与一些固定的计算机相连形成局域网进行彼...
java写的局域网广播系统.本软件包括2个部分:局域网广播系统――服务端,局域网广播系统――接收端,服务端是通过网络连接,与一些固定的计算机相连形成局域网进行彼此间的信息发送,实现通信功能。可以发送计算机中存储的文本文件,只对以文本文挡(text)上文字进行识别;接收端是通过网络连接,在指定的局域网中接收固定计算机播放的消息。-LAN broadcasting system. The software includes two parts : LAN Broadcasting System-- server, LAN broadcasting system-- receiving end, the server is connected by a network, with some fixed computer connected to form LAN inter-messaging, communications function. This computer can store text files, only to block texts (text) characters on the identification; The receiving terminal is connected through the network in the designated LAN receive a fixed computer player news.
- 2022-04-23 03:24:29下载
- 积分:1
-
Java8读取Access数据库
Java8读取Access数据库 以及java操作zip文件解压 以及压缩 采用ant.jar
当然您有什么好的建议可以随时私信联系
- 2022-03-25 14:33:10下载
- 积分:1
-
是一个学生开发信息管理系统
是一个学生开发信息管理系统-Is to develop a student information management system
- 2022-12-12 22:25:03下载
- 积分:1
-
StringUtil
资源描述
提供字符串处理相关方法的工具类.其中包含:检查字符串是否为空字符,检查字符串是否包含字符,
删除输入字符串头和尾的控制字符,从源字符串内去除指定的字符串., 压缩字符串,将压缩后的数据解压缩等
- 2023-06-10 19:55:08下载
- 积分:1
-
JAVA击球游戏
package com.lzw;
import java.awt.*;
import java.util.*;
import javax.swing.*;
public class SleepMethodTest extends JFrame {
private Thread t;
// 定义颜色数组
//setVisible(true); // 使窗体可见
// 设置窗体关闭方式
//setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
private static Color[] color = { Color.orange, Color.BLUE, Color.CYAN,
Color.GREEN, Color.ORANGE, Color.YELLOW, Color.RED,
Color.PINK, Color.LIGHT_GRAY };
private static final Random rand = new Random();// 创建随机对象
private static Color getC() {// 获取随机颜色值的方法
return color[rand.nextInt(color.length)];
}
public SleepMethodTest() {
t = new Thread(new Runnable() {// 创建匿名线程对象
int x = 60;// 定义初始坐标
int y = 60;
int m = 20;
int n = 0;
int r=20;
int R;
public void run() {// 覆盖线程接口方法
while (n++&l
- 2022-01-25 15:51:47下载
- 积分:1
-
android 静态壁纸实例源码下载
一款还不错的静态壁纸代码 核心代码:package com.example.wallpaperchange;import android.os.Bundle;import android.app.Activity;import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Intent;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast; public class MainActivity extends Activity { AlarmManager aManager; Button start,stop; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button)findViewById(R.id.start); stop = (Button)findViewById(R.id.stop); aManager = (AlarmManager)getSystemService(Service.ALARM_SERVICE); //指定ChangeService组件 Intent intent = new Intent(MainActivity.this,ChangeService.class); //创建PendingIntent对象 final PendingIntent pi = PendingIntent.getService( MainActivity.this, 0, intent, 0); start.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub aManager.setRepeating(AlarmManager.RTC_WAKEUP, 0, 5000, pi); start.setEnabled(false); stop.setEnabled(true); Toast.makeText(MainActivity.this, "壁纸定时更换启动成功", 5000).show(); } }); stop.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub start.setEnabled(true); stop.setEnabled(false); aManager.cancel(pi); } }); } }
- 2014-06-03下载
- 积分:1
-
Algorirmo-de-Mineria-de-Datos
Algorimos de ordenamiento Programado en Matlab para mineria de datos ..............
- 2014-11-04 21:54:22下载
- 积分:1
-
android3_10
android 2d 图形绘制,小球不停地跳转(android small program)
- 2012-05-09 22:09:52下载
- 积分:1