8.16安卓开发 注意事项

显式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安卓开发 注意事项

上一篇:(转)手机的AP和BP是什么?


下一篇:<<网络是怎样连接的>>笔记第2章用电信号传输Tcp/ip数据