-
Andriod 游戏回到战国 源码分享
Andriod 游戏回到战国 源码分享,包括了游戏本身的源代码,还包括了游戏设计系统-上层可遇层设计工具,游戏设计系统-底层不可遇层设计,包括了地图元素设计面板、地图层绘制面板等。
游戏中,关于status的几种状态的说明:工作状态 0:什么都不干 1:导入图片 2:保存元素 3:设置占位行列 4:设置不可通过行列列表 5:保存元素列表 6:加载元素列表 7:删除元素。
- 2022-11-02 05:25:08下载
- 积分:1
-
高仿360云盘 UI
前些日子几大互联网巨头展开了一轮网盘空间大战。一下子从G级别提高到了T级别。以后谁的空间没有1T估计都不好意思开口了~~~试用了一下360云盘的客户端,比较小清新(不是给360打广告~~~)。刚好UI这一块是我最不擅长的,于是萌发了练习模仿它的UI的念头~~~顺便把复习一下自定义控件的使用。 以下是完成的效果图,左边是官方的,右边是我模仿的: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-05-12 17:53:21下载
- 积分:1
-
android 手机截屏 实例源码下载
android 手机截屏 实例源码下载
- 2014-09-10下载
- 积分:1
-
videoplayer-Vplayer
Android video player code informative, Notes rich安卓视频播放器,代码翔实,注释丰富,适合初学者学习参考-
videoplayerAmplayer.gitHEAD
.......................index
....................gitignore
...................Android.mk
...................AndroidManifest.xml
...................AndroidManifest.xml~
...................jniamplayer2.c
......................Android.mk
......................Application.mk
...................proguard.flags
...................README
...................
esdrawable-hdpi.gitignore
...................................g.PNG
...................................rowser_button.xml
...................................rowser_focuse.png
.....
- 2022-05-23 04:15:03下载
- 积分:1
-
模拟淘宝商城
界面非常好看的安卓端源码 仿淘宝商城
- 2023-02-23 11:05:04下载
- 积分:1
-
一款经典的android游戏《堆房子》。可以为初学android提供帮助
全新的UI;全新的Chrome Lite浏览器,有离线阅读,16标签页,隐身浏览模式等;截图功能;更强大的图片编辑功能;Gmail加入手势、离线搜索功能,UI更强大;新功能People:以联系人照片为核心,界面偏重滑动而非点击,。有望支持用户自定义添加第三方服务;新增流量管理工具,可具体查看每个应用产生的流量,限制使用流量,到达设置标准后自动断开网络。
- 2022-07-18 13:58:07下载
- 积分:1
-
actionsheet Android
应用背景这是一个自定义的iOS喜欢动作片专为Android。它看起来类似于iOS的设计模式,你可以使用它作为您的应用程序的一个组成部分。关键技术使用的技术是Java和XML。你可以编译这个项目在Android的工作室直接使用它在您的应用程序。这是一个摇篮,建立模型
- 2023-06-29 19:55:03下载
- 积分:1
-
视屏录制demo,可以支持usb
android-eye
===========
Change your android phone to a surveillance security camera.
## Download ##
You can download binrary from Google Play:
https://play.google.com/store/apps/details?id=teaonly.droideye
## Specifications ##
* Streaming
* Build-in web service, you can see the video via browser in pc and another phone, a modem browser with HTML5 is reauired.
* H.264 video and G.726 audio
* Streaming via websocket between browser and android phone.
* Decoding H.264 and G.726 in pure Javascript
* Smart
* Support motion detecting (doing)
* Support advanced vision algorithms (doing)
* Publishing alarm messages to SNS (not ready)
* Access over internet
* This app don"t support internet, you can try my another ap
- 2022-11-06 02:50:03下载
- 积分:1
-
远程视频监控
【核心代码】 public interface CameraSource { static final String LOG_TAG = "camera"; /** * Open the camera source for subsequent use via calls to capture(). * * @return true if the camera source was successfully opened. */ boolean open(); /** * Close the camera source. Calling close on a closed CameraSource is * permitted but has no effect. The camera source may be reopened after * being closed. */ void close(); /** * The width of the captured image. * * @return the width of the capture in pixels */ int getWidth(); /** * The height of the captured image. * * @return the height of the capture in pixels */ int getHeight(); /** * Attempts to render the current camera view onto the supplied canvas. * The capture will be rendered into the rectangle (0,0,width,height). * Outstanding transformations on the canvas may alter this. * * @param canvas the canvas to which the captured pixel data will be written * @return true iff a frame was successfully written to the canvas */ boolean capture(Canvas canvas); boolean saveImage(String savePath, String fileName); }
- 2013-12-04下载
- 积分:1
-
android 短信拦截 实例完整源码下载
可实现拦截短信,自动转发的功能。 部分代码:import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.IBinder;import android.os.PowerManager;import android.os.PowerManager.WakeLock;public class MyService extends Service{ SMSReceiver rs=null; static MyService service; private static PendingIntent pi = null; public static AlarmManager am = null; @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); service=this; pm = (PowerManager) getSystemService(Context.POWER_SERVICE); registerAlarm(); acquireWakeLock(this); registerRecever(); } @Override public void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); releaseWakeLock(); unregisterAlarm(); } private void registerRecever(){ rs=new SMSReceiver(); IntentFilter filter=new IntentFilter(); filter.addAction("android.provider.Telephony.SMS_RECEIVED"); filter.setPriority(1000); registerReceiver(rs, filter); } @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub if(rs==null)registerRecever(); return START_STICKY; } public static WakeLock wakeLock = null; private static PowerManager pm = null; public static synchronized void acquireWakeLock(Context c) { if (null == wakeLock) { wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "smslock"); wakeLock.acquire(); } } public static synchronized void releaseWakeLock() { if (wakeLock == null) return; if (wakeLock.isHeld()) { wakeLock.release(); wakeLock = null; } } /** * 启动重复型定时器 */ public static void registerAlarm() { if(Config.getAlarm())return; Intent intent = new Intent(service, AlarmReceiver.class); pi = PendingIntent.getBroadcast(service, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); // 设置一个PendingIntent对象,发送广播 am = (AlarmManager) service.getSystemService(Context.ALARM_SERVICE); // 获取AlarmManager对象, Config.setAlarm(true); am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 30*60*1000, pi); } /** * 取消定时器 */ public static void unregisterAlarm() { am.cancel(pi); am = null; Config.setAlarm(false); }}
- 2014-05-21下载
- 积分:1