当前位置: 网学 > 编程文档 > Android > 正文

Android Activity/Service Intent 通信 跳转

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/19
下载{$ArticleTitle}原创论文样式
l version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.edit_text" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/app_name">        <activity android:name=".MyEditText" 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-->        <activity android:name="com.android.dialog.MyDialog">          <intent-filter> <!--配置action路径-->             <action android:name="android.intent.action.mydialog" />             <category android:name="android.intent.category.DEFAULT" />          </intent-filter>        </activity> </application> <uses-sdk android:minSdkVersion="7" />  </manifest> 复制代码第二种方式,用类名跳转。 Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Intent的描述, 负责找到对应的组件,将 Intent传递给调用的组件,并完成组件的调用。Intent在这里起着实现调用者与被调用者之间的解耦作用。Intent传递过程中,要找到目标消费者(另一个Activity,IntentReceiver或Service),也就是Intent的响应者。 Java代码 package com.Android;  import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener;  public class FormStuff extends Activity { @Override public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.formstuff);         final ImageButton button = (ImageButton) findViewById(R.id.android_button);        button.setOnClickListener(new OnClickListener() {          public void onClick(View v) { // 用类名跳转,需要在AndroidManifest.xml中申明activity             Intent intent = new Intent(FormStuff.this, HelloTabWidget.class);       
  • 上一篇资讯: 通过AIDL调用Service
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号