-
java-master
Android插件
PubNub utilizes a Publish/Subscribe model for real-time data streaming and device signaling which lets you establish and maintain persistent socket connections to any device and push data to global audiences in less than ¼ of a second.
The atomic components that make up a data stream are API Keys, Messages, and Channels.(PubNub Java-based SDKs for Java/Android
PubNub utilizes a Publish/Subscribe model for real-time data streaming and device signaling which lets you establish and maintain persistent socket connections to any device and push data to global audiences in less than ¼ of a second.
The atomic components that make up a data stream are API Keys, Messages, and Channels.)
- 2016-06-05 13:38:05下载
- 积分:1
-
Android开源框架,ANdroidFine
Android开源框架,ANdroidFine,内部包含各种Android常用控件,操作逻辑
- 2022-01-30 14:24:00下载
- 积分:1
-
Android抽奖转盘
项目是安卓抽奖转盘的实现
- 2013-08-05下载
- 积分:1
-
Wi-fi_fix
说明: wifi fix zip for some old chinese android devices.
- 2019-06-30 05:59:24下载
- 积分: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
-
研究生科研助手(微信开发)
基于微信的二次开发,专门针对研究生科研的引导软件。可以实现人工答疑、投票、点评等功能。代码部署到新浪云中。
- 2023-04-22 09:10:04下载
- 积分:1
-
android无线点餐源码
这是一个android无线点餐的客户端,提供给大家互相研究交流,源代码分为客户端和服务端两部分,使用tomcat部署服务端,数据库是使用的mysql,客户端代码基本有注释
- 2023-07-12 00:55:04下载
- 积分:1
-
BLE蓝牙调试助手
BLE蓝牙模块调试助手,安卓手机用的BLE调试助,与BLE读写器功能相近。
- 2022-08-16 02:15:45下载
- 积分:1
-
android 获取某一网址上的图片
本程序是从网上下载图片,由于此操作是比较耗时的操作,为了防止UI主线程的阻塞,此源码将这个操作放在了AsyncTask异步任务中去执行。
- 2022-02-12 10:53:55下载
- 积分:1
-
VASTXmlParser 解析 封装工具类 符合vast 3.0规范
vast 3.0 解析 java和android都可用,工具类已经封装好了,下载可用
- 2022-04-06 12:03:45下载
- 积分:1