-
AndroidGesturePassword
安卓手机的手势密码源码,用户可以设置九宫格密码并校验。(gesture password on android)
- 2013-12-14 20:35:19下载
- 积分:1
-
ViewPager
android 开发中要的进入程序的时候的页面翻页功能,非常不错,请仔细阅读(android development program when you want to enter the page scrolling, which is very good, please read)
- 2013-06-03 14:41:28下载
- 积分:1
-
draw
此源码是一个可以在android手机上实现以动画的形式画图的一个demo(This source is a form of animation drawing a demo on the android phone)
- 2013-05-17 11:13:10下载
- 积分:1
-
转盘抽奖
转盘抽奖
- 2014-09-03下载
- 积分:1
-
theKingOfMedicine
安卓射击类小游戏,希望对安卓初学者研究有帮助(Andrews Shooting game, Andrews beginners)
- 2020-12-21 15:39:08下载
- 积分:1
-
cqwdc20
详细介绍了cdma通信系统功率控制的算法,并用matlab对其进行了仿真(In this paper, the power control algorithm of the cdma communication system is introduced in detail, and the simulation is carried out by matlab.)
- 2019-03-28 14:51:42下载
- 积分:1
-
android_key
android新增按键值流程,从底层到中间层再到上层app,对linux和android framework有个一定的认识(android key value added processes, from the bottom to the middle layer and then to the upper app, android framework for linux and have a certain understanding of)
- 2013-10-09 11:34:19下载
- 积分: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
-
newReader
电子书阅读源码,这个安卓阅读器主要有以下功能:
1、文本阅读
2、分页显示
3、背景音乐播放
4、书签功能
亮点主要是分页显示是bitmap形式的页面,这个也是参考其他高人学习来的,在书签功能里面,把书签以文本的方式存在(E-book reader source, this Andrews reader has the following features: 1, text reading, paging 3, background music, bookmarks bright spot is the main page display is a bitmap form page, this is also a reference to other high- people learn, the bookmark function inside the bookmarks in the way of text)
- 2020-12-26 14:59:03下载
- 积分:1
-
滑动效果
滑动效果
- 2015-01-18下载
- 积分:1