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> 

 

你可能感兴趣的:(android,action,intent,属性,组件通讯)