Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發中Intent傳遞對象的方法分析

Android開發中Intent傳遞對象的方法分析

編輯:關於Android編程

本文實例分析了Android開發中Intent傳遞對象的方法。分享給大家供大家參考,具體如下:

方法一:

利用方法:public Intent putExtra (String name, Parcelable value)傳遞一個Parceable的參數,此方法的參數被序列化到內存。

利用方法:public Intent putExtra (String name, Serializable value)傳遞一個實現了序列化接口類的對象,此方法的實參被序列化到磁盤。

方法二:

把數據存放到應用程序的“Context”中,定義MyApplication類,讓其繼承Application類,在MyApplication中存入相關數據的引用。代碼如下:

import android.app.Application;
import cn.itcast.mobilesafe.domain.TaskInfo;
public class MyApplication extends Application {
  public TaskInfo tastInfo;
}

在清單文件中配置Application:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" android:name="MyApplication">
    <uses-library android:name="android.test.runner" />

將要存放的數據存入Application中:

Intent intent = new Intent(TaskManagerActivity.this, AppDetailActivity.class);
MyApplication myApp = (MyApplication) getApplication();
Object obj = lv_task_manager.getItemAtPosition(position);
if(obj instanceof TaskInfo){
  TaskInfo info = (TaskInfo) obj;
  myApp.tastInfo = info;
  startActivity(intent);
}

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android通信方式總結》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved