RemoteViews的用法

RemoteViews所支持的View类型如下图所示(注意不支持下图中View的子类):
RemoteViews所支持的View的类型
RemoteViews没有提供findViewById方法,因为RemoteViews在远程进程中显示,因此无法直接访问里面的View元素,而必须通过RemoteViews所提供的一系列set方法来完成,部分set方法如下所示:

1:在Notification中的应用

示例代码如下:

    private Button button;
    private Notification notification;
    private NotificationManager notificationManager;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.ceshi);
        button = findViewById(R.id.button);
        Intent intent=new Intent(this, com.example.liang.arlvyou.lanjiazai.ar.MainActivity.class);
        Intent remote=new Intent(this, RemoteActivity.class);
        PendingIntent pendingIntent=PendingIntent.getActivity(this,0,intent,PendingIntent.FLAG_UPDATE_CURRENT);
        PendingIntent remoteIntent=PendingIntent.getActivity(this,0,remote,PendingIntent.FLAG_UPDATE_CURRENT);
        RemoteViews remoteViews=new RemoteViews(getPackageName(),R.layout.remoteview);
        remoteViews.setTextViewText(R.id.textView2,"我是remoteview");
        remoteViews.setImageViewResource(R.id.image,R.drawable.icon);
        remoteViews.setOnClickPendingIntent(R.id.button2,remoteIntent);
        notification=new Notification();//注意Notification创建得用new的方式了创建,因为
        //如果用Builder的方式创建的话,在设置remoteview的时候会用到setCustomContentView方法,
        //该方法需要api24才能使用,api版本太高了,但是使用new的方式就可以不用考虑低api的问题。
        notification.icon=R.mipmap.ic_launcher;
        notification.tickerText="hello,world";
        notification.when=System.currentTimeMillis();
        notification.contentView=remoteViews;
        notification.contentIntent=pendingIntent;
        notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                notificationManager.notify(1,notification);
            }
        });
    }

remoteview文件中的内容如下:

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

    <TextView
        android:text="TextView"
        android:layout_width="100sp"
        android:layout_height="wrap_content"
        android:id="@+id/textView2"/>
    <ImageView
        android:layout_width="100sp"
        android:layout_height="wrap_content"
        android:id="@+id/image"/>

    <Button
        android:text="Button"
        android:layout_width="100sp"
        android:layout_height="wrap_content"
        android:id="@+id/button2"/>
</LinearLayout>

2:在桌面小组件中的应用,直接运行应用就行,都不需要打开应用,桌面小组件就已经有了。

示例代码如下:

public class MyAppWidgetProvider extends AppWidgetProvider {
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        Log.d("MyAppWidgetProvider", "调用了onUpdate方法");
        Intent intent = new Intent(context, com.example.liang.arlvyou.lanjiazai.ar.MainActivity.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.remoteview);
        remoteViews.setImageViewResource(R.id.image, R.drawable.icon);
        remoteViews.setTextViewText(R.id.textView2, "我是桌面小组件");
        remoteViews.setOnClickPendingIntent(R.id.textView2, pendingIntent);
        appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);//用updateAppWidget来更新remoteViews的状态
    }
}

在androidmanifest.xml文件中

...
   <receiver android:name=".lanjiazai.MyAppWidgetProvider">
            <meta-data
                android:name="android.appwidget.provider" <!--name的值是固定的,只能是android.appwidget.provider-->
                android:resource="@xml/widget"/>
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/><!--必须得有这个action-->
            </intent-filter>
        </receiver>
...

在res的xml文件夹下创建桌面组件的信息文件,比如widget.xml,文件内容如下

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:initialLayout="@layout/remoteview"
    android:minWidth="100dp"
    android:minHeight="100dp"
    android:updatePeriodMillis="86400000">
</appwidget-provider>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,032评论 25 707
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 我们总要在一些时候交上些话语税。我们做不到一直说真话,但是说话不代表不沉默,只是违不违心罢了。 已经听到太多人说时...
    木森先生阅读 137评论 0 0
  • 主席,你看看这个活动这样办的怎么样? 主席,你说说我怎么才能留住他们不退会? 主席,你有没有爱过你的学生会干部们?...
    0e73ab658539阅读 316评论 0 0
  • 这天,小明走在放学回家的路上。 迎面走来一个高大的男子。披头散发,放荡不羁,衣服破烂,满身散发着不可言说的味道,像...
    象弥阅读 1,018评论 18 3