码迷,mamicode.com
首页 > 移动开发 > 详细

第十三章,隐式intent小demo(Android)

时间:2015-06-20 09:20:31      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:android   intent   

MainActivity.java

package com.example.demo16;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import android.widget.LinearLayout;

public class MainActivity extends Activity implements OnClickListener {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// 去掉Activity的标题
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		super.onCreate(savedInstanceState);
		// 注释原来布局
		// setContentView(R.layout.activity_main);

		// 实例化布局
		LinearLayout llayout = new LinearLayout(this);
		// 布局方向
		llayout.setOrientation(LinearLayout.VERTICAL);
		// 添加到窗口中
		setContentView(llayout);
		// 实例化按钮
		Button b = new Button(this);
		b.setOnClickListener(this);
		// 把按钮添加到布局中
		llayout.addView(b);

	}

	@Override
	public void onClick(View arg0) {
		// TODO Auto-generated method stub
		Intent intent = new Intent("myaction");
		intent.addCategory("mycategory");
		startActivity(intent);

	}

}
AndroidManifest.xml

在文件中添加第二个Activity那段内容即可

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.demo16.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 start -->
        <activity android:name="com.example.demo16.SecondActivity" >
            <intent-filter>
                <action android:name="myaction" />


                <category android:name="mycategory" />

                <!-- 这行表示是默认的category,一定要写,如果没有mycategory,这一行也要写 -->
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <!-- 这是第二个Activity end -->
    </application>

运行截图:

技术分享

点击按钮跳转到

技术分享

注:因为SecondActivity文件和布局比较简单,代码这里就没有贴出

第十三章,隐式intent小demo(Android)

标签:android   intent   

原文地址:http://blog.csdn.net/qingbowen/article/details/46563929

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!