Android之使用Bundle進行IPC

来源:http://www.cnblogs.com/zhangmiao14/archive/2016/12/31/6226543.html
-Advertisement-
Play Games

一、Bundle進行IPC介紹 四大組件中的三大組件(Activity、Service、Receiver)都是支持在Intent中傳遞Bundle數據的,由於Bundle實現了Parcelable介面,所以它可以方便地在不同的進程之間傳輸。當然,傳輸的數據必須能夠被序列化,比如基本類型、實現了Par ...


一、Bundle進行IPC介紹

四大組件中的三大組件(Activity、Service、Receiver)都是支持在Intent中傳遞Bundle數據的,由於Bundle實現了Parcelable介面,所以它可以方便地在不同的進程之間傳輸。當然,傳輸的數據必須能夠被序列化,比如基本類型、實現了Parcelable介面的對象、實現了Serializable介面的對象以及一些Android支持的特殊對象,具體內容可以看Bundle這個類,就可以看到所有它支持的類型。Bundle不支持的類型無法通過它在進程間傳遞數據。

二、使用方法

1.打包數據發送

Intent intent1 = new Intent(MainActivity.this, ThirdActivity.class);
Bundle bundle = new Bundle();
bundle.putCharSequence("name", "zhangmiao");
bundle.putInt("age", 20);
intent1.putExtras(bundle);
startActivity(intent1);

2.接受數據

Intent intent = getIntent();
Bundle bundle = intent.getExtras();
String name = bundle.getString("name");
int age = bundle.getInt("age");

3.在AndroidManifest.xml中開啟多進程

<activity
   ...
   android:process=":remote" />

三、小案例

1.修改activity_main.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.zhangmiao.ipcdemo.MainActivity"
    android:orientation="vertical"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="Bundler">
    </TextView>

    <Button
        android:id="@+id/bundler_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="send message">
    </Button>

</LinearLayout>

2.添加activity_third.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="at activity Third" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Activity Third" />

</LinearLayout>

3.添加ThirdActivity類

package com.zhangmiao.ipcdemo;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

/**
 * Created by zhangmiao on 2016/12/27.
 */
public class ThirdActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_third);
        Intent intent = getIntent();
        Bundle bundle = intent.getExtras();
        String name = bundle.getString("name");
        int age = bundle.getInt("age");
        TextView textView = (TextView) findViewById(R.id.textView1);
        textView.setText("name:" + name + ",age:" + age);
    }
}

4.修改MainActivity類

package com.zhangmiao.ipcdemo;

import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.os.Messenger;
import android.os.RemoteException;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.io.Serializable;

public class MainActivity extends AppCompatActivity {

    private static final String TAG = "MainActivity";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button button = (Button) findViewById(R.id.bundler_button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent1 = new Intent(MainActivity.this, ThirdActivity.class);
                Bundle bundle = new Bundle();
                bundle.putCharSequence("name", "zhangmiao");
                bundle.putInt("age", 20);
                intent1.putExtras(bundle);
                startActivity(intent1);
            }
        });
    }
}

5.修改AndroidManifest.xml文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.zhangmiao.ipcdemo">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:launchMode="standard"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ThirdActivity"
            android:configChanges="screenLayout"
            android:label="@string/app_name"
            android:process=":remote" />
    </application>
</manifest>

完整代碼下載地址:https://github.com/ZhangMiao147/IPCDemo


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 雖然公司自己的網站和給客戶開發的項目中都涉及到了微信開發,自己也寫了關於微信開發的兩篇文章,但感覺自己對微信開發中的一些概念還是容易混淆,今天瀏覽了下微信公眾平臺、微信開放平臺的後臺和相關文檔,算是弄清楚了下麵這些東西,至於其他還沒弄清楚的,以後想到了再說。 1,微信公眾平臺(https://mp. ...
  • 一、前言 在上一篇博文中,我們的爬蟲面臨著一個問題,在爬取Unsplash網站的時候,由於網站是下拉刷新,並沒有分頁。所以不能夠通過頁碼獲取頁面的url來分別發送網路請求。我也嘗試了其他方式,比如下拉的時候監控http請求,看看請求是否有規律可以模擬。後來發現請求並沒有規律,也就是不能夠模擬http ...
  • 一、Scrapy簡介 Scrapy是一個為了爬取網站數據,提取結構性數據而編寫的應用框架。 可以應用在包括數據挖掘,信息處理或存儲歷史數據等一系列的程式中。 Scrapy基於事件驅動網路框架 Twisted 編寫。因此,Scrapy基於併發性考慮由非阻塞(即非同步)的實現。 組件 Scrapy Eng ...
  • 由於解釋器模式基本不用,我就直接轉載網上的了,大家看看漲漲姿勢http://blog.csdn.net/ylchou/article/details/7594135 一、引子 其實沒有什麼好的例子引入解釋器模式,因為它描述瞭如何構成一個簡單的語言解釋器,主要應用在使用面向對象語言開發編譯器中;在實際 ...
  • 上一篇: "Mac OS、Ubuntu 安裝及使用 Consul" 1. 服務註冊 對 Consul 進行服務註冊之前,需要先部署一個服務站點,我們可以使用 ASP.NET Core 創建 Web 應用程式,並且部署到 Ubuntu 伺服器上。 ASP.NET Core Hell World 應用程 ...
  • /** * 中介者模式 * @author TMAC-J * 研究了這麼多設計模式,覺得無非就是幾點: * 1.若兩個類有耦合關係,設立一個中間類,處理兩個類的關係,把兩個類的耦合降低 * 2.面向介面 * 3.在設計時就應當想到如果以後有修改,不要去修改原有類,而要設計成能新添加類去做新功能的架構... ...
  • /** * 訪問者模式 * @author TMAC-J * 在客戶端和元素之間添加一個訪問者 * 當你需要添加一些和元素關係不大的需求時,可以直接放在訪問者裡面 * 或者是元素之間有一些公共的代碼塊,你可以把它放在訪問者裡面,就不用寫重覆代碼了 * 適用於元素數據基本不變,操作不斷變化的場景 * ... ...
  • 一、Ibatis常用動態sql語法,簡單粗暴用一例子 <select id="iBatisSelectList" parameterClass="java.util.HashMap" resultMap="BeanFieldMap"> SELECT Column_list FROM Table_na ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...