-
uc-001-n
This test does only covers cases where the Additive or Mulplicative expression ToPrimitive is a string.
- 2014-02-11 15:43:56下载
- 积分:1
-
phonegap 婚礼请帖实例源码下载
phonegap 婚礼请帖实例源码下载
- 2015-02-01下载
- 积分:1
-
How to make splash
说明: 制作Android开机Splash.img镜像文件(Making an Android boot Splash.img image file)
- 2020-06-23 12:40:01下载
- 积分:1
-
android 二维码的生成与扫描 实例源码下载
android 二维码的生成与扫描 实例源码下载
- 2015-01-14下载
- 积分:1
-
Projetmainprekrayur
这个程序是很好,因为他解释什么原始代码中的 prodet datte,但为什么你不使用
- 2022-05-25 06:55:40下载
- 积分:1
-
Soruce_Code_Of_Secret_Of_Android_Application_Devel
《Android应用开发揭秘》本书内容全面、循序渐进、深入浅出,实战性强,权威性毋庸置疑!全书一共分为5个部分:第一部分是准备篇,第二部分是基础篇,讲解了Android开发的相关知识,第三部分是实例篇,第四部分是高级篇,第五部分是扩展篇。(" Android Application Development Hood" of the book is comprehensive, step by step, easy to understand, combat and strong, authoritative doubt! The book is divided into a total of five parts: The first part is to prepare papers, articles based on the second part is to explain the Android development of knowledge, the third part is the instance of the article, the fourth part is the advanced part, Part V is to expand articles.)
- 2020-06-25 22:40:02下载
- 积分: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
-
adb
说明: ADB to communicate between PC and Android smartphone
- 2019-07-05 05:08:36下载
- 积分:1
-
电力条例草案计算器 [沙特阿拉伯版本]
这是一个电力条例草案计算器与沙特阿拉伯电公司各项规章制度和功率沙特里亚尔比。
应用程序将帮助您在计算你基于您输入到 [.xls] 文件中,用来与一个组织得很好的表通过使用 excel 工作表来输入您的设备,他们中的额定功率的友好的用户界面应用程序的每个设备的费用 [W] 或 [千瓦] 并且还包含的设备工作沿着每一天的一天,直到条例草案 》 时的 30 天计算 [.zip] 文件的时间平均量源代码作为 [.pdf] 和 [.xls] 表也是在他们以及应用程序的 GUI 版本 [>>> 作的工作为沙特电器公司
- 2022-09-13 10:30:03下载
- 积分:1
-
Ch15_HelloSQlite
android studio 环境下,SQLite数据库的使用源码,包括数据的添加、删除、查询等操作(Android studio environment, the use of SQLite database source, including data addition, deletion, query and other operations)
- 2018-03-26 09:06:30下载
- 积分:1