android跳转到另一个界面,是app常用的操作。我们可以跳转到该应用本身的界面,亦可以跳转到系统的应用界面。
效果:
打开软件:
跳转到第二个界面:
跳转到系统应用的界面:
附代码如下:
主界面代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package com.yy.twoactivity; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); } /** * 点击事件,当用户点击的时候跳转到第二个界面 * @param view */ public void click(View view){ //意图 Intent intent= new Intent(); //设置包和界面 intent.setClassName( this , "com.yy.twoactivity.SecondActivity" ); //跳转到新的设定好的界面 startActivity(intent); } /** * 点击事件,激活系统的应用 程序界面 * @param view */ public void click2(View view){ //意图 Intent intent= new Intent(); //设置预打开系统应用的包和界面 // cmp=com.android.gallery/com.android.camera.GalleryPicker intent.setClassName( "com.android.gallery" , "com.android.camera.GalleryPicker" ); //跳转到新的设定好的界面 startActivity(intent); } } |
创建第二个Activity:
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.yy.twoactivity; import android.app.Activity; import android.os.Bundle; public class SecondActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity2); } } |
注意:
必须在AndroidManifest.xml文件中进行配置Activity信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<application android:allowBackup= "true" android:icon= "@drawable/ic_launcher" android:label= "@string/app_name" android:theme= "@style/AppTheme" > <activity android:name= ".MainActivity" android:label= "@string/app_name" > <intent-filter> <action android:name= "android.intent.action.MAIN" /> <category android:name= "android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name= ".SecondActivity" android:label= "@string/app_second_name" > </activity> </application> |
以上这篇android显示意图激活另一个Activity的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。