-
Tree
说明: android树形分级列表demo.java编写(Tree hierarchical list)
- 2019-02-21 10:16:16下载
- 积分:1
-
android 获取已安装应用信息列表 例子 源码下载
android 获取已安装应用信息列表 例子 源码下载
- 2014-09-18下载
- 积分:1
-
蓝牙串口通信代码
蓝牙串口通信,卓手机与Arduino之间采用蓝牙串口通讯,是很多智能装置和互动装置常用的控制方法,简单而有效,无需网络环境,很实用的技术。
- 2022-02-01 01:58:27下载
- 积分:1
-
android 静态壁纸实例源码下载
一款还不错的静态壁纸代码 核心代码:package com.example.wallpaperchange;import android.os.Bundle;import android.app.Activity;import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Intent;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast; public class MainActivity extends Activity { AlarmManager aManager; Button start,stop; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button)findViewById(R.id.start); stop = (Button)findViewById(R.id.stop); aManager = (AlarmManager)getSystemService(Service.ALARM_SERVICE); //指定ChangeService组件 Intent intent = new Intent(MainActivity.this,ChangeService.class); //创建PendingIntent对象 final PendingIntent pi = PendingIntent.getService( MainActivity.this, 0, intent, 0); start.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub aManager.setRepeating(AlarmManager.RTC_WAKEUP, 0, 5000, pi); start.setEnabled(false); stop.setEnabled(true); Toast.makeText(MainActivity.this, "壁纸定时更换启动成功", 5000).show(); } }); stop.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub start.setEnabled(true); stop.setEnabled(false); aManager.cancel(pi); } }); } }
- 2014-06-03下载
- 积分:1
-
FloatSearchBoxDemo
android源码实现一个搜索浮动框示例,演示android系统浮动搜索框,主要是借助Android原有系统的浮动框实现,学习一下如何调用Android原生的组件等资源,初学者必看的小程序。(JAVA CODE)
- 2013-05-05 10:13:45下载
- 积分:1
-
TVINFOR4.04
allwinner a10 AV-IN驱动及android DEMO
- 2013-10-22 15:42:24下载
- 积分:1
-
asmack-android-6.jar
说明: smack是一套很好的开源即时通讯api,是基于Xmpp协议的实现,而在Android,则提供了一个asmack的jar包,其功能以及用法跟smack一致。(Smack is a good open source instant messaging api, based on the implementation of Xmpp protocol, while Android provides an asmack jar package, which functions and uses the same as smack.)
- 2020-06-17 22:20:01下载
- 积分:1
-
SystemClock
System Clock Source Code for Andriod.
- 2013-12-16 15:59:27下载
- 积分:1
-
Viterbi-Vifekbi-This
强烈推荐好用的卷积码编码,维特比译码和软判决,本代码简易可行,(Good convolutional code coding, Viterbi decoding and soft decision are highly recommended. This code is simple and feasible.)
- 2019-03-28 00:21:41下载
- 积分:1
-
课程表
实现课程表的基本功能,提醒学生上课时间,还有备注等功能(Realize the basic function of the curriculum, remind the students of the class time, as well as notes and other functions.)
- 2021-01-07 11:18:54下载
- 积分:1