显示意图激活另外一个activity

manifest中设置activity组件(activity 是系统的重要的组件,操作系统要想找到activity就必须在清单文件里面配置)

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="我是第一个界面" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="click"
        android:text="跳转到第二个界面" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="click2"
        android:text="激活系统的一个应用程序界面" />
MainActivity
package org.gentry.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 意图
		// 显示意图:必须要指定开启组件的具体信息(包名,组件名,组件的class)
		Intent intent = new Intent(this, OtherScreenActivity.class);
		startActivity(intent);
	}

	public void click2(View view) {
		Intent intent = new Intent();
		intent.setClassName("com.android.gallery",
				"com.android.camera.GalleryPicker");
		startActivity(intent);
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值