Activity初接触
Posted Sheldon_wz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Activity初接触相关的知识,希望对你有一定的参考价值。
Activity中TextView的文字显示Hello android:
1、直接显示:<TextView android:text="Hello Android" />
2、间接显示:<TextView android:text="@string/hello_android" /> (推荐)
string.xml文件中<resources><string name="hello_android">Hello Android</string></resources>
启动另一个Activity:
1、创建主界面:my_layout.xml文件中<Button android:text="启动另一个Activity" android:id="@+id/btnStartAnotherAty" />
2、创建另一个Activity界面:java文件夹中创建一个AnotherAty,自动在layout文件夹中生成activity_another_aty.xml
3、功能实现:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//初始化时显示该页面
setContentView(R.layout.my_layout);
findViewById(R.id.btnStartAnotherAty).setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
startActivity(new Intent(MainActivity.this,AnotherAty.class));
// startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"))); //跳转到百度页面
}
});
}
以上是关于Activity初接触的主要内容,如果未能解决你的问题,请参考以下文章