-
vgprznb3
说明: 多载波以及扩频通信系统相关的书,主要内容有OFDM以及多载波CDMA,偏重于工程感念,理论性不是很强(Multicarrier and spread spectrum communication system related books, including OFDM and multicarrier CDMA, focus on engineering perception, the theory is not very strong)
- 2019-03-27 22:27:57下载
- 积分:1
-
android拖动效果
android拖动效果,类似launcher的滑动替换效果,叫你如何使用android的touch方法来实现拖动替换效果。代码很简单,易于理解实用!用这个例子就可以让你了解拖动的实现方式
- 2022-05-08 06:29:01下载
- 积分: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
-
Android蓝牙串口开发
稳定的搜索连接框架,对于想要学习蓝牙串口的同学,很值得借鉴。此套源码是经过多次实践,可以重复使用,只需要修改程序上层框架即可,底层的搜索连接和收发数据可以保持不变。
- 2022-05-07 00:05:13下载
- 积分:1
-
GridScenario
Utility base class creating various GridView scenarios for Andriod.
- 2013-10-21 16:29:55下载
- 积分:1
-
省、市、县级联选择Android改进版
Android盛市、县三级选择菜单,这是一个改进版,不过外观样式上还是需要再完善的,外观样式这个因人而好吧,自己美化,可融到自己的APP中使用。这款菜单同样是从外部调用的省市县(区)菜单内容,Android端实现了选择框并加载这些内容,最终实现的用户选择盛市县功能。
- 2022-03-11 03:57:26下载
- 积分:1
-
地震波库(全)
【实例简介】
- 2021-06-24 00:31:12下载
- 积分:1
-
ContactsManager
Java源码下载,Android 联系人管理模块的代码,可读取联系人、修改、删除联系人,如何连接手机通讯录,如何获取头像列表,如何区分是存储在手机或是SIM卡中,对于Android的应用来说,联系人管理比较典型,但比较重要,源代码中的注释很丰富,这也是大家值得参阅本源码的一大原因(Java source code download, code Android contact management module, you can read contacts, modify, delete contacts, how to connect the phone book, How to Get Picture list, how to distinguish is stored in the phone or SIM card for the Android applications, contact management more typical, but more importantly, the comments in the source code is very rich, and this is all worth refer to the source of a major cause of)
- 2014-04-16 09:24:01下载
- 积分:1
-
Android_KSOAP2_WebService
在Android_中使用KSOAP2调用WebService(Used in Android_ KSOAP2 call WebService)
- 2013-04-05 16:38:31下载
- 积分:1
-
android 3d保龄球
android小游戏,在休闲娱乐的同时也可以开心的学习android。
- 2022-08-24 22:48:04下载
- 积分:1