码迷,mamicode.com
首页 >  
搜索关键字:bundle intent    ( 7220个结果
问题 K: Length of Bundle Rope
问题 K: Length of Bundle Rope 时间限制: 2 Sec 内存限制: 1024 MB提交 状态 题目描述 Due to the development of online shopping, the logistics industry which is highly conn ...
分类:其他好文   时间:2020-09-17 22:58:33    阅读次数:44
ERROR ITMS-90535: "Unexpected CFBundleExecutable Key. The bundle at 'Payload/HomeyComb Mobile.app/guide.bundle' does not contain a bundle executable.
上传ipa包时候报错: ERROR ITMS-90535: "Unexpected CFBundleExecutable Key. The bundle at 'Payload/**.app/guide.bundle' does not contain a bundle executable. If ...
分类:移动开发   时间:2020-09-17 18:57:05    阅读次数:48
vue-awesome-swiper v4.1.1版本 autoplay、effect等无效问题
main.js import VueAwesomeSwiper from 'vue-awesome-swiper' //swiper6版本需要引入的cssimport "swiper/swiper-bundle.css";//降低版本后引入的cssimport 'swiper/dist/css/sw ...
分类:其他好文   时间:2020-09-14 19:04:20    阅读次数:160
想掌握Android面试官必问的 Binder 机制?那别想绕开 Binder 驱动源码分析!
Binder是Android系统的进程间通信机制,是了解Android运行机制必须要掌握的一个知识点,更是一线企业面试必问的知识点!比如:binder有什么优势?(字节)binder一次拷贝原理?(腾讯)Intent传递大数据限制?(阿里)AIDL原理?(字节)谈谈你对binder驱动的了解?(字节)你都能回答上来吗!?到底怎样才能彻底掌握binder机制、游刃有余的应对binder面试问题,让面
分类:移动开发   时间:2020-09-12 21:55:03    阅读次数:72
如何激活已经运行过的Activity, 而不是重新启动新的Activity
Intent i=new Intent(this,Activity1.class); i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); startActivity(i); 用这种方式调用Activity,如果Activity在堆栈中,将会运行它的o ...
分类:其他好文   时间:2020-08-11 09:27:25    阅读次数:82
Webpack 原理浅析
背景 Webpack 迭代到4.x版本后,其源码已经十分庞大,对各种开发场景进行了高度抽象,阅读成本也愈发昂贵。但是为了了解其内部的工作原理,让我们尝试从一个最简单的 webpack 配置入手,从工具设计者的角度开发一款低配版的 Webpack。 开发者视角 假设某一天,我们接到了需求,需要开发一个 ...
分类:Web程序   时间:2020-08-02 16:11:17    阅读次数:101
react-native webview 修改安卓目录映射
在根目录新建 Static.bundle 文件夹 打开android/app/build.gradle文件,新增 android { ... sourceSets { main { assets.srcDirs = ['src/main/assets', '../../Static.bundle'] ...
分类:移动开发   时间:2020-07-29 17:37:44    阅读次数:93
react-native-webview Android 无法正确加载本地html文件(显示源代码)
最近发现在开发环境下出现问题 将HTML页面复制到android/app/src/main/assets文件夹 source = Platform.OS 'ios' ? require('../Static.bundle/**html') : { uri: 'file:///android_asse ...
分类:移动开发   时间:2020-07-29 17:35:10    阅读次数:141
Activity的横竖屏生命周期
接下来,我们补充一下Activity的横竖屏生命周期的变化。 先上代码吧: package com.sunofbeaches.activitylifecircledemo; import android.app.Activity; import android.os.Bundle; import a ...
分类:其他好文   时间:2020-07-26 19:25:44    阅读次数:79
intent用法
1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:其他好文   时间:2020-07-26 15:31:18    阅读次数:105
7220条   上一页 1 ... 4 5 6 7 8 ... 722 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!