-
Android开源框架,ANdroidFine
Android开源框架,ANdroidFine,内部包含各种Android常用控件,操作逻辑
- 2022-01-30 14:24:00下载
- 积分:1
-
GameView
Android 游戏框架 View,游戏入门必须了解实例(Android View game framework, game entry must understand the examples)
- 2013-09-05 11:16:59下载
- 积分:1
-
android及时通讯源码:实时对讲机
android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机android及时通讯源码:实时对讲机
- 2022-03-18 07:42:04下载
- 积分:1
-
android 百度地图开发各种实例源码下载(可用)
android 百度地图 源码
- 2014-05-24下载
- 积分:1
-
android 阅读器 源码
android 阅读器 源码
- 2014-04-07下载
- 积分:1
-
android平台的棋牌游戏源码
客户端源码,麻雀虽小,五脏俱全,可以了解下棋牌类(斗地主)游戏客户端的基本实现
- 2022-06-11 14:22:58下载
- 积分:1
-
Android
- 2022-03-03 21:22:03下载
- 积分: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
-
pedometer
开源Android项目计步器源码,打开软件后,手握手机,可根据你走路时胳膊摆的次数准确测试出你走了多少步,有意思吧,而且这个项目的源码是开源的,分iPhone版和Android版,此为android版的pedometer源代码,有条件的可重新编译运行一下。(Open-source Android project pedometer source, open the software, hand phone, according to the swing arm when you walk out the number of accurately test how many steps you take, it is interesting, and this project' s source code is open source, and the iPhone version of Android version, this version of the pedometer for android source code, conditions can be recompiled to run it.)
- 2013-06-06 16:07:19下载
- 积分:1
-
TravelApp-(1)
一个简单的安卓app应用程序,类似于滴答拼车,但是拼游的,大家可以通过此软件找到一起出游的小伙伴(A simple Android app applications, similar to the ticking carpool, but to fight tour, we can travel together by this software to find a small partner)
- 2020-10-22 16:17:23下载
- 积分:1