文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2022-06-06 04:29

关注

一、概述

前面一篇文章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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯