码迷,mamicode.com
首页 > 移动开发 > 详细

8.16安卓开发 注意事项

时间:2018-08-17 01:20:46      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:组件   etc   strong   contex   注意事项   klist   name   pre   安卓开发   

显式Intent穿梭activities  除四大组件外,用getContext传递(getContext为获取上下文)

add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//获取上下文方式传递,仅四大组件是Intent intent = new Intent(OneFragment.this,AddGoods.class);
Intent intent = new Intent(getContext(),AddGoods.class);
startActivity(intent);
}
});

活动注册:都在application标签中注册
普通的activity注册
<activity android:name=".Pagers.One.AddGoods"/>
主活动注册
<activity android:name=".Login">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

8.16安卓开发 注意事项

标签:组件   etc   strong   contex   注意事项   klist   name   pre   安卓开发   

原文地址:https://www.cnblogs.com/acg88688/p/9490954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!