package tjuci.edu.dl;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
public class First extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.d("第一个Activity", "我是FirstActivity");
setContentView(R.layout.main);
Button btn = (Button)findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent();
ComponentName com = new ComponentName(First.this, Second.class);
intent.setComponent(com);
startActivity(intent);
//上述代码可写为
//Intent intent = new Intent(First.this, Second.class);
//startActivity(intent);
}
});
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
应用源码之Intent_ComponentSample.zip (28个子文件)
应用源码之Intent_ComponentSample
Intent_ComponentSample
project.properties 361B
.classpath 364B
src
tjuci
edu
dl
First.java 1018B
Second.java 351B
res
drawable-mdpi
ic_launcher.png 3KB
drawable-ldpi
ic_launcher.png 2KB
values
strings.xml 185B
layout
main.xml 420B
drawable-hdpi
ic_launcher.png 4KB
bin
classes
tjuci
edu
dl
Second.class 577B
R$string.class 409B
First$1.class 1KB
R$layout.class 376B
R$id.class 363B
First.class 1KB
R$attr.class 322B
R$drawable.class 389B
R.class 489B
resources.ap_ 10KB
res
drawable-mdpi
ic_launcher.png 2KB
drawable-ldpi
ic_launcher.png 2KB
drawable-hdpi
ic_launcher.png 4KB
classes.dex 3KB
Intent_ComponentSample.apk 14KB
proguard.cfg 1KB
.project 858B
AndroidManifest.xml 816B
gen
tjuci
edu
dl
R.java 733B
共 28 条
- 1
资源评论
Soft_Leader
- 粉丝: 1510
- 资源: 2850
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 竞品分析培训课件03竞品分析.pptx
- 竞品分析培训课件02竞品分析.pptx
- 竞品分析培训课件06竞争产品分析.pptx
- 竞品分析培训课件04竞品分四.pptx
- 竞品分析培训课件05竞品分析.pptx
- 竞品分析培训课件08电商平台竞品分析.pptx
- fftw-devel-3.3.3-8.el7.x64-86.rpm.tar.gz
- 4N模型:决定新品类能否取得成功.pptx
- 3大洞察:找到新品类初步概念.pptx
- 5大方向:最容易找到新品类机会.pptx
- 品牌定位的终极方式—《品类创新》.pptx
- fftw-doc-3.3.3-8.el7.x64-86.rpm.tar.gz
- fftw-libs-3.3.3-8.el7.x64-86.rpm.tar.gz
- fftw-libs-double-3.3.3-8.el7.x64-86.rpm.tar.gz
- 设计公司学习资料 -FutuerBrand .pdf
- 设计公司学习资料 -DRAGON ROUGE .pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功