登录
首页 » java » andoroid 测试软件

andoroid 测试软件

于 2022-01-25 发布 文件大小:57.30 kB
0 72
下载积分: 2 下载次数: 1

代码说明:

1.使用linux命令安装: 2.使用adb命令安装。 3.使用发送Intent消息打开apk安装程序 4.静默安装:安装过程中没有任何提示的安装    [1] 重写pacakgemanager的相关类   [2] 注册消息接收类 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报

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

发表评论

0 个回复

  • 简单的2048
    开始时棋盘内随机出现两个数字,出现的数字仅可能为2或4  玩家可以选择上下左右四个方向,若棋盘内的数字出现位移或合并,视为有效移动  玩家选择的方向上若有相同的数字则合并,每次有效移动可以同时合并,但不可以连续合并  合并所得的所有新生成数字想加即为该步的有效得分  玩家选择的方向行或列前方有空格则出现位移  每有效移动一步,棋盘的空位(无数字处)随机出现一个数字(依然可能为2或4)  棋盘被数字填满,无法进行有效移动,判负,游戏结束
    2023-07-16 06:30:03下载
    积分:1
  • test
    java两种方法编写倒置的三角形,输出第一行7个,第二行5,第三行3个,第四行1个(two ways to write java inverted triangle, the first line of the output 7, the second line 5, the third line 3, the fourth line 1)
    2010-10-20 11:05:56下载
    积分:1
  • JavaApplication6
    Libreria para el driver hx8347 para pantallas tft las cuales funcionen con dicho driver
    2019-05-21 03:00:26下载
    积分:1
  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • spring security oauth2 实现的SSO单点登录案例
    基于spring security oauth2 实现的SSO单点登录案例,本案例非常完整,值得用于参考学习spring security oauth2
    2020-03-09下载
    积分:1
  • 摩斯码翻译
    摩尔斯电码是一种早期的数字化通信形式,但是它不同于现代只使用零和一两种状态的二进制代码,它的代码包括五种:点(.)划(-)点和划之间的停顿每个字符间短的停顿(在点和划之间)每个词之间中等的停顿 以及句子之间长的停顿。本程序对简单的摩斯码进行翻译,得到人们可以看懂的文字。
    2023-02-07 16:55:03下载
    积分:1
  • 分散式宝丽来图片画廊插件
    一款效果非常酷的纯js和CSS3分散式宝丽来图片画廊插件(A Very Cool Pure JS and CSS3 Decentralized Polaroid Gallery Plug-in)
    2018-12-26 13:09:35下载
    积分:1
  • JSP银行业务管理系统
    JSP银行业务管理系统,使用java开发的后端,jsp实现的前端开发,采用标准的mvc设计模式。银行业务管理,例如:资金的结算,资金的统筹,等等,方便初学者学校源码可以直接使用myeclipse直接导入使用
    2023-03-24 20:30:04下载
    积分:1
  • Java编写的数独益智游戏
    在这篇文章中,我希望能展示我们如何能够发展使用最简单、 通用解题的技巧之一只是对任何问题的解决办法: 简单的深度优先搜索。我要去使用数独谜题作为例子。
    2022-04-07 16:24:03下载
    积分:1
  • 3793832861910016
    说明:  ewaearewrerewrwerqeqrewrqere
    2020-06-23 01:20:02下载
    积分:1
  • 696518资源总数
  • 106215会员总数
  • 5今日下载