Android 开发小贴士--Intent跳转
在Android开发中页面跳转算是非常常见的操作了,使用也很简单 Intent intent = new Intent(mActivity, ListActivity.class); intent.putExtra("type", mtype); startActivity(intent);我见过3、4年开发经验的人还在这么写,当然,这样写也没错,但却不够规范安全,如果手抖把type多按了个空...
原创
2018-05-25 15:20:47 ·
237 阅读 ·
0 评论