android组件通讯 Intent-Action属性

简介:

Action属性应用实例

1、自定义Action属性

程序文件

/Chapter06_Intent_TestAction/src/com/amaker/ch06/app/MainActivity.java

 

 
  1. 代码  
  2.  
  3. package com.amaker.ch06.app;  
  4.  
  5. import android.app.Activity;  
  6. import android.content.Intent;  
  7. import android.os.Bundle;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.widget.Button;  
  11. /**  
  12.  *   
  13.  * 测试Intent Action 属性  
  14.  */ 
  15. public class MainActivity extends Activity {  
  16.     // 定义Action 属性常量  
  17.     public static final String MY_ACTION="com.amaker.ch07.app.MY_ACTION";  
  18.     // 声明Button  
  19.     private Button btn;  
  20.     @Override 
  21.     public void onCreate(Bundle savedInstanceState) {  
  22.         super.onCreate(savedInstanceState);  
  23.         // 设置布局视图  
  24.         setContentView(R.layout.main);  
  25.         // 实例化Button  
  26.         btn = (Button)findViewById(R.id.Button01);  
  27.         btn.setOnClickListener(new OnClickListener() {  
  28.             @Override 
  29.             public void onClick(View v) {  
  30.                  // 实例化Intent  
  31.                 Intent intent = new Intent();  
  32.                 // 为Intent设置Action属性  
  33.                 intent.setAction(MY_ACTION);  
  34.                 // 启动Activity  
  35.                 startActivity(intent);  
  36.             }  
  37.         });  
  38.     }  

/Chapter06_Intent_TestAction/src/com/amaker/ch06/app/MyActivity.java

 

 
  1. 代码  
  2.  
  3. package com.amaker.ch06.app;  
  4.  
  5. import android.app.Activity;  
  6. import android.content.Intent;  
  7. import android.os.Bundle;  
  8. import android.widget.TextView;  
  9. /**  
  10.  * 测试Intent Action 属性  
  11.  */ 
  12. public class MyActivity extends Activity {  
  13.     // 声明TextView  
  14.     private TextView tv;  
  15.     @Override 
  16.     public void onCreate(Bundle savedInstanceState) {  
  17.         super.onCreate(savedInstanceState);  
  18.         // 设置视图布局  
  19.         setContentView(R.layout.my_layout);  
  20.         // 获得Intent对象  
  21.         Intent intent = getIntent();  
  22.         // 获得Action  
  23.         String action = intent.getAction();  
  24.         // 获得TextView  
  25.         tv = (TextView)findViewById(R.id.TextView01);  
  26.         // 设置内容  
  27.         tv.setText(action);  
  28.     }  

布局文件

/Chapter06_Intent_TestAction/res/layout/main.xml

 

 
  1. 代码  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>  
  4. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  5.     android:orientation="vertical" 
  6.     android:layout_width="fill_parent" 
  7.     android:layout_height="fill_parent" 
  8.     >  
  9.  
  10.     <Button   
  11.         android:text="测试Intent的Action属性"   
  12.         android:id="@+id/Button01"   
  13.         android:layout_width="wrap_content"   
  14.         android:layout_height="wrap_content"></Button>  
  15.  
  16. </LinearLayout> 

 

/Chapter06_Intent_TestAction/res/layout/my_layout.xml

 

 
  1. 代码  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>  
  4. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  5.     android:orientation="vertical" 
  6.     android:layout_width="fill_parent" 
  7.     android:layout_height="fill_parent" 
  8.     >  
  9.  
  10.     <TextView   
  11.         android:text="@+id/TextView01"   
  12.         android:id="@+id/TextView01"   
  13.         android:layout_width="wrap_content"   
  14.         android:layout_height="wrap_content"></TextView>  
  15.       
  16. </LinearLayout> 

清单文件

/Chapter06_Intent_TestAction/AndroidManifest.xml

 

 
  1. 代码  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>  
  4. <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  5.       package="com.amaker.ch06.app" 
  6.       android:versionCode="1" 
  7.       android:versionName="1.0">  
  8.     <application android:icon="@drawable/icon" android:label="@string/app_name">  
  9.       
  10.         <activity android:name=".MainActivity" 
  11.                   android:label="@string/app_name">  
  12.             <intent-filter>  
  13.                 <action android:name="android.intent.action.MAIN" />  
  14.                 <category android:name="android.intent.category.LAUNCHER" />  
  15.             </intent-filter>  
  16.         </activity>  
  17.           
  18.         <activity android:name="MyActivity">  
  19.             <intent-filter>  
  20.                 <action android:name="com.amaker.ch06.app.MY_ACTION" />  
  21.                 <category android:name="android.intent.category.DEFAULT" />  
  22.             </intent-filter>  
  23.         </activity>  
  24.  
  25.     </application>  
  26.     <uses-sdk android:minSdkVersion="3" />  
  27.  
  28. </manifest> 

2、访问系统的Action属性

程序文件

/Chapter06_Intent_TestAction2/src/com/amaker/ch06/app/MainActivity.java

 

 
  1. 代码  
  2.  
  3. package com.amaker.ch06.app;  
  4.  
  5. import android.app.Activity;  
  6. import android.content.Intent;  
  7. import android.os.Bundle;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.widget.Button;  
  11.  
  12. /**  
  13.  *   
  14.  * 测试Intent Action 属性  
  15.  */ 
  16. public class MainActivity extends Activity {  
  17.     // 声明Button  
  18.     private Button btn;  
  19.     @Override 
  20.     public void onCreate(Bundle savedInstanceState) {  
  21.         super.onCreate(savedInstanceState);  
  22.         // 设置当前布局视图  
  23.         setContentView(R.layout.main);  
  24.         // 实例化Button  
  25.         btn = (Button)findViewById(R.id.Button01);  
  26.         btn.setOnClickListener(new OnClickListener() {  
  27.             @Override 
  28.             public void onClick(View v) {  
  29.                 // 创建Intent  
  30.                 Intent intent = new Intent();  
  31.                 // 设置Intent Action属性  
  32.                 intent.setAction(Intent.ACTION_GET_CONTENT);  
  33.                 // 设置Intent Type 属性  
  34.                 intent.setType("vnd.android.cursor.item/phone");  
  35.                 // 启动Activity  
  36.                 startActivity(intent);  
  37.             }  
  38.         });  
  39.     }  

布局文件

/Chapter06_Intent_TestAction2/res/layout/main.xml

 

 
  1. 代码  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?> 
  4. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  5.     android:orientation="vertical" 
  6.     android:layout_width="fill_parent" 
  7.     android:layout_height="fill_parent" 
  8.     > 
  9.  
  10.     <Button   
  11.         android:text="测试Intent的 Action属性"   
  12.         android:id="@+id/Button01"   
  13.         android:layout_width="wrap_content"   
  14.         android:layout_height="wrap_content"></Button> 
  15.  
  16. </LinearLayout> 

清单文件

/Chapter06_Intent_TestAction2/AndroidManifest.xml

 

 
  1. 代码  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?> 
  4. <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  5.       package="com.amaker.ch06.app" 
  6.       android:versionCode="1" 
  7.       android:versionName="1.0"> 
  8.     <application android:icon="@drawable/icon" android:label="@string/app_name"> 
  9.         <activity android:name=".MainActivity" 
  10.                   android:label="@string/app_name"> 
  11.             <intent-filter> 
  12.                 <action android:name="android.intent.action.MAIN" /> 
  13.                 <category android:name="android.intent.category.LAUNCHER" /> 
  14.             </intent-filter> 
  15.         </activity> 
  16.  
  17.     </application> 
  18.     <uses-sdk android:minSdkVersion="3" /> 
  19.  
  20. </manifest> 

 



本文转自linzheng 51CTO博客,原文链接:http://blog.51cto.com/linzheng/1080670

相关文章
|
26天前
|
存储 Android开发 开发者
深入理解安卓应用开发的核心组件
【10月更文挑战第8天】探索Android应用开发的精髓,本文带你了解安卓核心组件的奥秘,包括Activity、Service、BroadcastReceiver和ContentProvider。我们将通过代码示例,揭示这些组件如何协同工作,构建出功能强大且响应迅速的应用程序。无论你是初学者还是资深开发者,这篇文章都将为你提供新的视角和深度知识。
|
29天前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
61 0
|
29天前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
1月前
|
测试技术 数据库 Android开发
深入解析Android架构组件——Jetpack的使用与实践
本文旨在探讨谷歌推出的Android架构组件——Jetpack,在现代Android开发中的应用。Jetpack作为一系列库和工具的集合,旨在帮助开发者更轻松地编写出健壮、可维护且性能优异的应用。通过详细解析各个组件如Lifecycle、ViewModel、LiveData等,我们将了解其原理和使用场景,并结合实例展示如何在实际项目中应用这些组件,提升开发效率和应用质量。
39 6
|
2月前
|
存储 开发框架 数据可视化
深入解析Android应用开发中的四大核心组件
本文将探讨Android开发中的四大核心组件——Activity、Service、BroadcastReceiver和ContentProvider。我们将深入了解每个组件的定义、作用、使用方法及它们之间的交互方式,以帮助开发者更好地理解和应用这些组件,提升Android应用开发的能力和效率。
153 5
|
2月前
|
缓存 搜索推荐 Android开发
安卓应用开发中的自定义View组件实践
【9月更文挑战第10天】在安卓开发领域,自定义View是提升用户体验和实现界面个性化的重要手段。本文将通过一个实际案例,展示如何在安卓项目中创建和使用自定义View组件,包括设计思路、实现步骤以及可能遇到的问题和解决方案。文章不仅提供了代码示例,还深入探讨了自定义View的性能优化技巧,旨在帮助开发者更好地掌握这一技能。
|
3月前
|
存储 搜索推荐 Java
探索安卓开发中的自定义视图:打造个性化UI组件Java中的异常处理:从基础到高级
【8月更文挑战第29天】在安卓应用的海洋中,一个独特的用户界面(UI)能让应用脱颖而出。自定义视图是实现这一目标的强大工具。本文将通过一个简单的自定义计数器视图示例,展示如何从零开始创建一个具有独特风格和功能的安卓UI组件,并讨论在此过程中涉及的设计原则、性能优化和兼容性问题。准备好让你的应用与众不同了吗?让我们开始吧!
|
3月前
|
XML 搜索推荐 Android开发
安卓开发中的自定义View组件实践
【8月更文挑战第30天】探索Android世界,自定义View是提升应用界面的关键。本文以简洁的语言带你了解如何创建自定义View,从基础到高级技巧,一步步打造个性化的UI组件。
|
3月前
|
开发工具 Android开发
Android项目架构设计问题之组件A通知组件B某个事件的发生如何解决
Android项目架构设计问题之组件A通知组件B某个事件的发生如何解决
39 0
|
3月前
|
Android开发
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
54 0