-
AndroidDLAN
Android版多屏互动是公司根据市场需求推出的一项新功能。该软件实现模拟PC和电视的遥控器、鼠标和键盘操作,并可以将PC的屏幕和视频发送至TV和手机,实现真正意义上的多屏互动
(Android version of the multi-screen interaction is a new feature introduced in the company based on market demand. The software simulation of the PC and the TV remote control, mouse and keyboard, and you can send your PC to the TV screen and video and mobile, multi-screen interactive real sense of)
- 2013-12-19 22:00:12下载
- 积分:1
-
android 播放网络MP3 音乐播放
简单的基本功能,实测可行。 核心代码:package com.sharpandroid.music.activity;import java.io.IOException;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.ImageButton;import android.widget.SeekBar;import android.widget.TextView;import com.sharpandroid.music.R;import com.sharpandroid.music.StreamingMediaPlayer;public class MediaPlayer extends Activity { private Button streamButton; private ImageButton playButton; private boolean isPlaying; private TextView playTime; private StreamingMediaPlayer audioStreamer; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); initControls(); } private void initControls() { playTime=(TextView) findViewById(R.id.playTime); streamButton = (Button) findViewById(R.id.button_stream); streamButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { startStreamingAudio(); }}); playButton = (ImageButton) findViewById(R.id.button_play); playButton.setEnabled(false); playButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { if (audioStreamer.getMediaPlayer().isPlaying()) { audioStreamer.getMediaPlayer().pause(); playButton.setImageResource(R.drawable.button_play); } else { audioStreamer.getMediaPlayer().start(); audioStreamer.startPlayProgressUpdater(); playButton.setImageResource(R.drawable.button_pause); } isPlaying = !isPlaying; }}); } private void startStreamingAudio() { try { final SeekBar progressBar = (SeekBar) findViewById(R.id.progress_bar); if ( audioStreamer != null) { audioStreamer.interrupt(); } audioStreamer = new StreamingMediaPlayer(this, playButton, streamButton, progressBar,playTime); audioStreamer.startStreaming("http://192.168.64.1/xa.mp3",5208, 216); streamButton.setEnabled(false); } catch (IOException e) { Log.e(getClass().getName(), "读取音乐出错!", e); } }}
- 2014-05-26下载
- 积分:1
-
Servlet with child to paren windows js script
这里模拟了一个铁路订票系统,使用servlet处理订票,使用java脚本从chid窗口在父窗口中反映日期时间
- 2022-08-25 20:56:45下载
- 积分:1
-
类百度搜索引擎
通过lucene建立索引 通过JSP程序生成动态网页 通过Servlet和Tomcat服务器发布 基于中文关键字检索的全文搜索系统
- 2022-01-25 20:13:04下载
- 积分:1
-
ChinaMap
类似Chinaren地图一样的图示效果,经过地图上的省份时弹出省份下属的所有地区信息,因Flash技术自己不太信息,所以决定用js来实现,经过讨论,有了大致的思路,不过制作省份的图片有些麻烦,思路是这样的:每个城市一个碎片图,用定位拼成一个中国地图,在此层里写入地区信息,鼠标经过时再做交互处理,具体请看附件里的demo实例。 (Similar Chinaren map icons like effect through the provinces on the map when the information pops up in all regions under the provinces, because Flash technology is not your own information, so I decided to use js to achieve, after discussion, have a general idea, but the production provinces picture some trouble, the idea is this: a fragment of each city map, with location makes up a Chinese map, write the information in this layer in the region, do interactive processing when the mouse passes, please see the annex of specific instances demo .)
- 2014-10-21 16:18:45下载
- 积分:1
-
要搜索的地点 (如 ATM、 医院和餐馆等附近的 android 项目
它是一个 Android 的应用程序不是地图的许多以下功能和你可以搜索任何附近由地方像酒店、 atm (自动柜员机)、 餐馆和医院等。
上传的项目文件包含的 awk 文件,以便您可以在您的 Android 手机中看到演示。
主要的应用程序,这是,每当你是新到的地方,没有一个人知道你的然后你可以使用此应用程序,以便它是非常有用和有效。
- 2022-12-15 10:30:04下载
- 积分:1
-
允许每一个物体有序地站立的飞行物体
应用背景创建飞行物覆盖,和不同的类别,并允许对象被阶段与先到先服务的方法。关键技术最初的代码写的Java,和后来转移JavaFX。& nbsp;JavaFX Script ;是 ;脚本 ;语言,是由Sun Microsystems,形成的 ;JavaFX ;家庭技术的Java平台的一部分。
- 2022-03-17 22:02:15下载
- 积分:1
-
android 手机短信验证码例子源码下载
android 手机短信验证码例子源码下载
- 2015-04-25下载
- 积分:1
-
flow-shop-scheduling
flow shop 的文档 简单易懂 容易上手很实用(flow shop)
- 2021-05-14 05:30:02下载
- 积分:1
-
Java 组件动画 Netbeans 项目
您可以创建动画中 swing 应用程序的所有组件。例句: JTextfield,JButton,JRedioButton,JPanel。等
- 2022-02-20 08:37:55下载
- 积分:1