登录
首页 » Android » android 小学生 课程表

android 小学生 课程表

于 2022-01-25 发布 文件大小:8.46 MB
0 155
下载积分: 2 下载次数: 1

代码说明:

小学生课程表,可以自定义课程,自定义每周课程数目。为了程序的健壮性,程序自动记录异常的信息并mail到设定的邮箱

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • exercise
    模拟android手机上通讯录程序 模拟实现手机上联系人的添加操作 (Analog android phone address book program to simulate the add operation of mobile phone contact)
    2012-06-14 00:14:13下载
    积分:1
  • android PCM player
    android playback performance PCM audio data , collected for testing audio PCM data is correct !
    2022-03-19 17:49:25下载
    积分:1
  • Gallery
    android gallary桌面切换效果,超炫,带翻转效果(android gallary desktop switching effects, stunning, with rollover effects)
    2011-07-02 12:48:05下载
    积分:1
  • AutoDictionary
    Stores new words temporarily until they are promoted to the user dictionary for longevity for Andriod.
    2013-10-23 23:04:04下载
    积分:1
  • Android 网络编程详解 Socket编程实例
    Android 4.0网络编程详解一书第7章中的一个实例:Android中的Socket编程,这是该例子的源代码,涉及到以下的技术要点:线程池、监听端口、存放断点数据、创建线程池,池中具有(cpu个数*50)条线程、启动服务、为支持多用户并发访问,采用线程池管理每一个用户的连接请求。。。
    2022-07-06 15:17:06下载
    积分:1
  • Android 的数字时钟
    这一项目定义 anlalog 和数字时钟,你可以模拟和数字时钟通过创建此应用程序。 此应用程序是非常有用的大学生干那里最后课。
    2023-08-19 00:35:04下载
    积分:1
  • 安卓出租车
    应用背景世界上许多出租车应用程序都存在,但没有开源代码。我的应用程序是一个完整的开源。我只贴出代码,但几天我会发布iOS源代码。关键技术使用我的应用程序,你可以找到知识如何操作出租车支持系统。你也可以找到如何使用actionbarsherlock和谷歌Android游戏服务。感谢。
    2022-05-25 07:21:16下载
    积分:1
  • Android 自定义的扇形进度条例子
    Android 自定义的扇形进度条例子,为了可以模拟真实的加载效果,这里加载了多张网络图片,使用了一个网络图片链接数组来存储图片地址,然后下载这些网络图片,建立 异步任务类等。对扇形进度条的定义说明:   可以设置扇形颜色,背景,起始位置(度数)。   定义了扇形颜色,起始位置(度数),进度等属性。   并为其设置进度。符合条件则更新进度条   这个扇形进度条带给我们的思考:   (1)如何绘制扇形。   (2)重写onDraw(Canvas canvas) 或 draw(Canvas canvas)。   (3)是否保留背景设置。   (4)什么时候以及如何更新进度。   (5)自定义进度、绘画起点度、扇形颜色(背景)等属性。   (6)进度文字的显示。   (7)扫描、旋转、阴影等效果的实现。
    2022-03-04 09:07:59下载
    积分: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局域网音频通信程序(AudioRecord采集)
    Android局域网音频通信程序(AudioRecord采集,AudioTrack播放)Android局域网音频通信程序,利用AudioRecord采集,AudioTrack播放。
    2015-02-17下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载