码迷,mamicode.com
首页 >  
搜索关键字:intent    ( 3334个结果
想掌握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
intent用法
1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:其他好文   时间:2020-07-26 15:31:18    阅读次数:105
Android连载27-复习以往内容(五)
一、隐士intent,紧接着上一次复习 得到第二个活动返回的数据之后,我们需要重写onActivityResult()来获取数据 protected void onActivityResult(int requestCode,int resultCode,Intent data){ switch(r ...
分类:移动开发   时间:2020-07-24 09:22:13    阅读次数:88
Android PreferenceScreen
PreferenceScreen和fragment结合 一、监听事件 1.1、onPreferenceChange public boolean onPreferenceChange(Preference preference, Object objValue) { return false; } ...
分类:移动开发   时间:2020-07-20 22:27:20    阅读次数:102
APP内跳转链接用INTENT,但是用系统浏览器,在内部还是要webview
public void clickKefu() { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com")); getActivity().startActivity(intent); } ...
分类:移动开发   时间:2020-07-14 18:09:16    阅读次数:94
video dialog 有影响力的论文详解
Multi-View Attention Networks for Visual Dialog * 切入点:问题的重点是哪个 ,需要充分理解才能抓住重点——给定问题的语义意图 determining the semantic intent of the given question and then ...
分类:其他好文   时间:2020-07-04 20:39:09    阅读次数:69
使用Android studio 离线打包uniapp
由于项目需求,使用了hbuilderx 他们家的uniapp框架,这个框架是基于微信小程序和vue衍生出来的,只要你会微信小程序和vue基本上都是很容易上手,关于他们的api,可以自行去官网查看,这里只是为了记录如何降低打包出来的apk的大小 本篇博客的前提是你的电脑Android的环境配置都已经配 ...
分类:移动开发   时间:2020-07-02 10:46:05    阅读次数:381
activity 之间传递参数
参考:http://c.biancheng.net/view/2923.html mainActivity中 通过intent 传递参数 class MyClickListener implements View.OnClickListener{ @Override public void onCl ...
分类:其他好文   时间:2020-07-01 12:42:53    阅读次数:53
策略模式
名称: 策略模式(Strategy Pattern) 问题: The intent of the Strategy Pattern is to define a family of algorithms, encapsulate each algorithm, and make them inter ...
分类:其他好文   时间:2020-06-28 20:11:35    阅读次数:55
3334条   上一页 1 2 3 4 ... 334 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!