我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android通过RemoteViews实现跨进程更新UI示例

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android通过RemoteViews实现跨进程更新UI示例

一、概述

前面一篇文章Android通过AIDL实现跨进程更新UI我们学习了aidl跨进程更新ui,这种传统方式实现跨进程更新UI是可行的,但有以下弊端:

View中的方法数比较多,在IPC中需要增加对应的方法比较繁琐。 View的每一个方法都会涉及到IPC操作,多次IPC带来的开销问题不容小觑。 View中方法的某些参数可能不支持IPC传输。例如:OnClickListener,它仅仅是个接口没有序列化。

接下来我们通过RemoteViews实现跨进程更新UI

二、实现效果图

在同一个应用中有两个Activity,MainActivity和Temp2Activity,这两个Activity不在同一个进程中。

这里写图片描述

现在需要通过Temp2Activity来改变MainActivity中的视图,即在MainActivity中添加两个Button,也就是实现跨进程更新UI这么一个功能。

在MainActivity里点击“跳转到新进程ACTIVITY”按钮,会启动一个新进程的Temp2Activity,我们先点击“绑定服务”,这样我们就启动了服务,再点击“AIDL更新”按钮,通过调用handler来实现跨进程更新UI,点击返回,我们发现MainActivity页面中新添加了两个按钮,并且按钮还具有点击事件。

这里写图片描述

三、核心代码

IremoteViewsManager.aidl

里面提供了两个方法,一个是根据id更新TextView里面的内容,一个是根据id添加view视图


// IremoteViewsManager.aidl.aidl
package com.czhappy.remoteviewdemo;
interface IremoteViewsManager {
  void addRemoteView(in RemoteViews remoteViews);
}

RemoteViewsAIDLService.Java


package com.czhappy.remoteviewdemo.service;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.Bundle;
import android.os.IBinder;
import android.os.Message;
import android.os.RemoteException;
import android.widget.RemoteViews;
import com.czhappy.remoteviewdemo.IremoteViewsManager;
import com.czhappy.remoteviewdemo.activity.MainActivity;

public class RemoteViewsAIDLService extends Service {
  private static final String TAG = "RemoteViewsAIDLService";
  private Binder remoteViewsBinder = new IremoteViewsManager.Stub(){
    @Override
    public void addRemoteView(RemoteViews remoteViews) throws RemoteException {
      Message message = new Message();
      message.what = 1;
      Bundle bundle = new Bundle();
      bundle.putParcelable("remoteViews",remoteViews);
      message.setData(bundle);
      new MainActivity.MyHandler(RemoteViewsAIDLService.this,getMainLooper()).sendMessage(message);
    }
  };
  public RemoteViewsAIDLService() {
  }
  @Override
  public IBinder onBind(Intent intent) {
    return remoteViewsBinder;
  }
}

MainActivity.java


package com.czhappy.remoteviewdemo.activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.RemoteViews;
import android.widget.TextView;
import com.czhappy.remoteviewdemo.R;
import java.lang.ref.WeakReference;
public class MainActivity extends AppCompatActivity {
  private static String TAG = "MainActivity";
  private static LinearLayout mLinearLayout;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mLinearLayout = (LinearLayout) this.findViewById(R.id.mylayout);
  }
  public static class MyHandler extends Handler {
    WeakReference<Context> weakReference;
    public MyHandler(Context context, Looper looper) {
      super(looper);
      weakReference = new WeakReference<>(context);
    }
    @Override
    public void handleMessage(Message msg) {
      super.handleMessage(msg);
      Log.i(TAG, "handleMessage");
      switch (msg.what) {
        case 1: //RemoteViews的AIDL实现
          RemoteViews remoteViews = msg.getData().getParcelable("remoteViews");
          if (remoteViews != null) {
            Log.i(TAG, "updateUI");
            View view = remoteViews.apply(weakReference.get(), mLinearLayout);
            mLinearLayout.addView(view);
          }
          break;
        default:
          break;
      }
    }
  };
  public void readyGo(View view){
    Intent intent = new Intent(MainActivity.this, Temp2Activity.class);
    startActivity(intent);
  }
}

Temp2Activity.java


package com.czhappy.remoteviewdemo.activity;
import android.app.PendingIntent;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;
import com.czhappy.remoteviewdemo.IremoteViewsManager;
import com.czhappy.remoteviewdemo.R;
import com.czhappy.remoteviewdemo.service.RemoteViewsAIDLService;

public class Temp2Activity extends AppCompatActivity {
  private String TAG = "Temp2Activity";
  private IremoteViewsManager remoteViewsManager;
  private boolean isBind = false;
  private ServiceConnection remoteViewServiceConnection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
      Log.i(TAG,"onServiceConnected");
      remoteViewsManager = IremoteViewsManager.Stub.asInterface(service);
    }
    @Override
    public void onServiceDisconnected(ComponentName name) {
      //回收
      remoteViewsManager = null;
    }
  };
  @Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.activity_temp);
  }
  
  public void bindService(View view) {
    Intent viewServiceIntent = new Intent(this,RemoteViewsAIDLService.class);
    isBind = bindService(viewServiceIntent,remoteViewServiceConnection, Context.BIND_AUTO_CREATE);
  }
  
  public void UpdateUI(View view){
    RemoteViews remoteViews = new RemoteViews(Temp2Activity.this.getPackageName(),R.layout.button_layout);
    Intent intentClick = new Intent(Temp2Activity.this,FirstActivity.class);
    PendingIntent openFirstActivity = PendingIntent.getActivity(Temp2Activity.this,0,intentClick,0);
    remoteViews.setOnClickPendingIntent(R.id.firstButton,openFirstActivity);
    Intent secondClick = new Intent(Temp2Activity.this,SecondActivity.class);
    PendingIntent openSecondActivity = PendingIntent.getActivity(Temp2Activity.this,0,secondClick,0);
    remoteViews.setOnClickPendingIntent(R.id.secondButton,openSecondActivity);
    remoteViews.setCharSequence(R.id.secondButton,"setText","想改就改");
    try {
      remoteViewsManager.addRemoteView(remoteViews);
    } catch (RemoteException e) {
      e.printStackTrace();
    }
  }
  @Override
  protected void onDestroy() {
    super.onDestroy();
    if(isBind){
      unbindService(remoteViewServiceConnection);
      isBind = false;
    }
  }
}

AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.czhappy.remoteviewdemo">
  <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".activity.MainActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <activity android:name=".activity.FirstActivity" />
    <activity android:name=".activity.SecondActivity" />
    <activity
      android:name=".activity.Temp2Activity"
      android:process=":remote2" />
    <service android:name="com.czhappy.remoteviewdemo.service.RemoteViewsAIDLService" />
  </application>
</manifest>

四、总结

RemoteViews就是为跨进程更新UI而生的,内部封装了很多方法用来实现跨进程更新UI。但这并不代表RemoteViews是就是万能的了,它也有不足之处,目前支持的布局和View有限

layout:

FrameLayout LinearLayout RelativeLayout GridLayout

View:

AnalogClock button Chronometer ImageButton ImageView ProgressBar TextView ViewFlipper ListView GridView StackView AdapterViewFlipper ViewStub

不支持自定义View 所以具体使用RemoteViews还是aidl或者BroadCastReceiver还得看实际的需求。

您可能感兴趣的文章:Android应用程序四大组件之使用AIDL如何实现跨进程调用ServiceAndroid 跨进程模拟按键(KeyEvent )实例详解Android AIDL实现两个APP间的跨进程通信实例Android编程实现AIDL(跨进程通信)的方法详解Android IPC机制利用Messenger实现跨进程通信详解Android跨进程IPC通信AIDL机制原理Android 跨进程SharedPreferences异常详解Android跨进程抛异常的原理的实现Android 跨进程通Messenger(简单易懂)Android实现跨进程接口回掉的方法


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android通过RemoteViews实现跨进程更新UI示例

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android通过RemoteViews实现跨进程更新UI示例

一、概述 前面一篇文章Android通过AIDL实现跨进程更新UI我们学习了aidl跨进程更新ui,这种传统方式实现跨进程更新UI是可行的,但有以下弊端:View中的方法数比较多,在IPC中需要增加对应的方法比较繁琐。View的每一个方法都
2022-06-06

在Android项目中使用RemoteViews实现跨进程更新界面

在Android项目中使用RemoteViews实现跨进程更新界面?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。实现效果图在同一个应用中有两个Activity,MainActi
2023-05-31

android使用handler ui线程和子线程通讯更新ui示例

代码如下:package com.act262.sockettx; import android.app.Activity;import android.os.Bundle;import android.os.Handler;import
2022-06-06

Android AIDL实现跨进程通信的示例代码

AIDL是Android接口定义语言,它可以用于让某个Service与多个应用程序组件之间进行跨进程通信,从而可以实现多个应用程序共享同一个Service的功能。实现步骤例:用 A程序去访问 B程序的MyService.java服务 在B
2023-05-30

Android使用ContentProvider实现跨进程通讯示例详解

这篇文章主要为大家介绍了Android使用ContentProvider实现跨进程通讯示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-03-08

Android如何实现使用handler在子线程中更新UI示例

小编给大家分享一下Android如何实现使用handler在子线程中更新UI示例,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!MainActivity代码:pac
2023-05-30

Android 中通过实现线程更新Progressdialog (对话进度条)

作为开发者我们需要经常站在用户角度考虑问题,比如在应用商城下载软件时,当用户点击下载按钮,则会有下载进度提示页面出现,现在我们通过线程休眠的方式模拟下载进度更新的演示,如图(这里为了截图方便设置对话进度条位于屏幕上方):layout界面代码
2022-06-06

android实现通知栏下载更新app示例

1.设计思路,使用VersionCode定义为版本升级参数。android为我们定义版本提供了2个属性: 代码如下:
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录