Binder是Android系统的进程间通信机制,是了解Android运行机制必须要掌握的一个知识点,更是一线企业面试必问的知识点!比如:binder有什么优势?(字节)binder一次拷贝原理?(腾讯)Intent传递大数据限制?(阿里)AIDL原理?(字节)谈谈你对binder驱动的了解?(字节)你都能回答上来吗!?到底怎样才能彻底掌握binder机制、游刃有余的应对binder面试问题,让面
分类:
移动开发 时间:
2020-09-12 21:55:03
阅读次数:
72
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
1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:
其他好文 时间:
2020-07-26 15:31:18
阅读次数:
105
一、隐士intent,紧接着上一次复习 得到第二个活动返回的数据之后,我们需要重写onActivityResult()来获取数据 protected void onActivityResult(int requestCode,int resultCode,Intent data){ switch(r ...
分类:
移动开发 时间:
2020-07-24 09:22:13
阅读次数:
88
PreferenceScreen和fragment结合 一、监听事件 1.1、onPreferenceChange public boolean onPreferenceChange(Preference preference, Object objValue) { return false; } ...
分类:
移动开发 时间:
2020-07-20 22:27:20
阅读次数:
102
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
Multi-View Attention Networks for Visual Dialog * 切入点:问题的重点是哪个 ,需要充分理解才能抓住重点——给定问题的语义意图 determining the semantic intent of the given question and then ...
分类:
其他好文 时间:
2020-07-04 20:39:09
阅读次数:
69
由于项目需求,使用了hbuilderx 他们家的uniapp框架,这个框架是基于微信小程序和vue衍生出来的,只要你会微信小程序和vue基本上都是很容易上手,关于他们的api,可以自行去官网查看,这里只是为了记录如何降低打包出来的apk的大小 本篇博客的前提是你的电脑Android的环境配置都已经配 ...
分类:
移动开发 时间:
2020-07-02 10:46:05
阅读次数:
381
参考: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