Android Widget 小部件(四---完结) 使用ListView、GridView、StackView、ViewFlipper展示Widget
官方有话这样说:
A RemoteViews object (and, consequently, an App Widget) can support the following layout classes:
And the following widget classes:
AnalogClockButtonChronometerImageButtonImageViewProgressBarTextViewViewFlipperListViewGridViewStackViewAdapterViewFlipper
Descendants of these classes are not supported.不支持这些类的后代
接下来的演示样例说明怎么样实现 使用ListView、GridView、StackView、ViewFlipper创建AppWidget
menifest
<receiver android:name="com.stone.receiver.WidgetSetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
<action android:name="com.stone.action.clickset"/>
<action android:name="com.stone.action.clickset.item"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/set_widget_provider"/>
</receiver>
res/xml/set_widget_provider.xml
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="250dp"
android:minHeight="180dp"
android:updatePeriodMillis="5000"
android:previewImage="@drawable/ic_launcher"
android:initialLayout="@layout/collections_view_widget"
android:resizeMode="horizontal|vertical"
android:autoAdvanceViewId="@id/viewflipper" >
<!--
计算size的公式: (70*n) -30 n为部件所需的大小(占几格) 当前的就是 4x4
minResizeWidth
minResizeHeight 能被调整的最小宽高,若大于minWidth minHeight 则忽略
label 选择部件时看到标签
icon 选择部件时看到图标
updatePeriodMillis 更新时间间隔
previewImage 选择部件时 展示的图像 3.0以上使用
initialLayout 布局文件
resizeMode 调整size模式
configure 假设须要在启动前先启动一个Activity进行设置,在这里给出Activity的完整类名
autoAdvanceViewId=@id/xx 与集合部件一起使用,指定该集合item自己主动推进 暂仅仅发现对stackview有效,会自己主动一段时间推进到下一个 集合部件:3.0后才有。set view:ListView、GridView、StackView、AdapterViewFlipper
ViewFlipper 为非集合部件
-->
</appwidget-provider>
layout/collections_view_widget.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" > <LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" > <Button
android:id="@+id/btn_listview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="listview" /> <Button
android:id="@+id/btn_gridview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="gridview" /> <Button
android:id="@+id/btn_stackview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="stackview" /> <Button
android:id="@+id/btn_viewflipper"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="viewflipper" />
</LinearLayout> <FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#80000000" >
/> <ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" /> <GridView
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:numColumns="2"
android:visibility="gone" /> <StackView
android:id="@+id/stackview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone" /> <ViewFlipper
android:id="@+id/viewflipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:autoStart="true"
android:flipInterval="2000"
android:visibility="gone" >
<!--
autoStart=true <==> startFlipping()
flipInterval=2000 <==> How long to wait before flipping to the next view
-->
<ImageView
android:id="@+id/iv1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/a11"/>
<ImageView
android:id="@+id/iv2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/a2"/>
<ImageView
android:id="@+id/iv3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/a3" />
<ImageView
android:id="@+id/iv4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/a4" />
</ViewFlipper> <TextView
android:id="@+id/tv_empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:text="Empty List"
android:visibility="gone" />
</FrameLayout> </LinearLayout>
集合的数据源 须要 继承 RemoteViewsService
package com.stone.service; import java.util.ArrayList;
import java.util.List; import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.RemoteViews;
import android.widget.RemoteViewsService; import com.stone.R;
import com.stone.receiver.WidgetSetProvider; /**
* 继承自RemoteViewsService 必须重写onGetViewFactory
* 该服务仅仅是用来 创建 集合widget使用的数据源
* @author stone
*/
public class WidgetSetService extends RemoteViewsService { public WidgetSetService() { } @Override
public RemoteViewsFactory onGetViewFactory(Intent intent) {
return new WidgetFactory(this.getApplicationContext(), intent);
} public class WidgetFactory implements RemoteViewsService.RemoteViewsFactory {
private static final int mCount = 10;
private Context mContext;
private List<String> mWidgetItems = new ArrayList<String>(); public WidgetFactory(Context context, Intent intent) {
mContext = context;
// mAppWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
// AppWidgetManager.INVALID_APPWIDGET_ID);
} @Override
public void onCreate() {
for (int i = 0; i < mCount; i++) {
mWidgetItems.add("item:" + i + "!");
}
} @Override
public void onDataSetChanged() {
/*
* appWidgetManager.notifyAppWidgetViewDataChanged(appWidgetIds, R.id.listview);
* 使用该通知更新数据源,会调用onDataSetChanged
*/
System.out.println("----onDataSetChanged----");
} @Override
public void onDestroy() {
mWidgetItems.clear();
} @Override
public int getCount() {
return mCount;
} @Override
public RemoteViews getViewAt(int position) {
RemoteViews views = new RemoteViews(mContext.getPackageName(), android.R.layout.simple_list_item_1);
views.setTextViewText(android.R.id.text1, "item:" + position);
System.out.println("RemoteViewsService----getViewAt" + position); Bundle extras = new Bundle();
extras.putInt(WidgetSetProvider.EXTRA_ITEM, position);
Intent fillInIntent = new Intent();
fillInIntent.putExtras(extras);
/*
* android.R.layout.simple_list_item_1 --- id --- text1
* listview的item click:将fillInIntent发送,
* fillInIntent它默认的就有action 是provider中使用 setPendingIntentTemplate 设置的action
*/
views.setOnClickFillInIntent(android.R.id.text1, fillInIntent); return views;
} @Override
public RemoteViews getLoadingView() {
/* 在更新界面的时候假设耗时就会显示 正在载入... 的默认字样,可是你能够更改这个界面
* 假设返回null 显示默认界面
* 否则 载入自己定义的,返回RemoteViews
*/
return null;
} @Override
public int getViewTypeCount() {
return 1;
} @Override
public long getItemId(int position) {
return position;
} @Override
public boolean hasStableIds() {
return false;
} } }
widgetprovider
package com.stone.receiver; import com.stone.R;
import com.stone.service.WidgetSetService; import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.text.format.DateUtils;
import android.view.View;
import android.widget.RemoteViews;
import android.widget.Toast;
import android.widget.ViewFlipper; /**
* 使用了集合展示AppWidget
* ListView、GridView、StackView 设置adapter,处理item点击
* ViewFlipper 在RemoteViews中缺少支持,暂仅仅能在它的布局文件里设置 轮换效果
* 对于切换到哪一个子view的item事件不优点理,仅仅能设置一个总体setPendingIntent
* @author stone
*/
public class WidgetSetProvider extends AppWidgetProvider {
public final static String CLICK_ACTION = "com.stone.action.clickset";
public final static String CLICK_ITEM_ACTION = "com.stone.action.clickset.item";
public final static String EXTRA_ITEM = "extra_item"; @Override
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
System.out.println(intent.getAction());
if (TextUtils.equals(CLICK_ACTION, intent.getAction())) {
int extraType = intent.getIntExtra("view_tag", 0);
if (extraType > 0) {
System.out.println("extra:::" + extraType); switch (extraType) {
case 1:
updateWidget(context, R.id.listview, R.id.gridview, R.id.stackview, R.id.viewflipper);
break;
case 2:
updateWidget(context, R.id.gridview, R.id.listview, R.id.stackview, R.id.viewflipper);
break;
case 3:
updateWidget(context, R.id.stackview, R.id.gridview, R.id.listview, R.id.viewflipper);
break;
case 4:
updateWidget(context, R.id.viewflipper, R.id.gridview, R.id.stackview, R.id.listview);
break; default:
break;
}
}
} else if (TextUtils.equals(CLICK_ITEM_ACTION, intent.getAction())) {
Bundle extras = intent.getExtras();
int position = extras.getInt(WidgetSetProvider.EXTRA_ITEM, -1);
if (position != -1) {
System.out.println("--点击了item---" + position);
System.out.println("");
// Toast.makeText(context, "click item:" + position, 0).show();
}
}
} @Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.collections_view_widget); Intent intent1 = new Intent(CLICK_ACTION);
intent1.putExtra("view_tag", 1);
PendingIntent pendingIntent1 = PendingIntent.getBroadcast(context, 101, intent1, 0);
views.setOnClickPendingIntent(R.id.btn_listview, pendingIntent1); Intent intent2 = new Intent(CLICK_ACTION);
intent2.putExtra("view_tag", 2);
PendingIntent pendingIntent2 = PendingIntent.getBroadcast(context, 102, intent2, 0);
views.setOnClickPendingIntent(R.id.btn_gridview, pendingIntent2); Intent intent3 = new Intent(CLICK_ACTION);
intent3.putExtra("view_tag", 3);
PendingIntent pendingIntent3 = PendingIntent.getBroadcast(context, 103, intent3, 0);
views.setOnClickPendingIntent(R.id.btn_stackview, pendingIntent3); Intent intent4 = new Intent(CLICK_ACTION);
intent4.putExtra("view_tag", 4);
PendingIntent pendingIntent4 = PendingIntent.getBroadcast(context, 104, intent4, 0);
views.setOnClickPendingIntent(R.id.btn_viewflipper, pendingIntent4); appWidgetManager.updateAppWidget(appWidgetIds, views); System.out.println("setwidget update");
super.onUpdate(context, appWidgetManager, appWidgetIds);
} @Override
public void onAppWidgetOptionsChanged(Context context,
AppWidgetManager appWidgetManager, int appWidgetId,
Bundle newOptions) {
super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId,
newOptions);
} @Override
public void onDeleted(Context context, int[] appWidgetIds) {
super.onDeleted(context, appWidgetIds);
} @Override
public void onEnabled(Context context) {
super.onEnabled(context);
} @Override
public void onDisabled(Context context) {
super.onDisabled(context);
} private void updateWidget(Context context, int visible, int gone1, int gone2, int gone3) {
//RemoteViews处理异进程中的View
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.collections_view_widget); views.setViewVisibility(visible, View.VISIBLE);
views.setViewVisibility(gone1, View.GONE);
views.setViewVisibility(gone2, View.GONE);
views.setViewVisibility(gone3, View.GONE); if (visible != R.id.viewflipper) {//viewflipper 不是 继承自AbsListView or AdapterViewAnimator 的view
Intent intent = new Intent(context, WidgetSetService.class);
views.setRemoteAdapter(visible, intent);//设置集合的adapter为intent指定的service
views.setEmptyView(visible, R.id.tv_empty);//指定集合view为空时显示的view Intent toIntent = new Intent(CLICK_ITEM_ACTION);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 200, toIntent, PendingIntent.FLAG_UPDATE_CURRENT);
/*
* setPendingIntentTemplate 设置pendingIntent 模板
* setOnClickFillInIntent 能够将fillInIntent 加入到pendingIntent中
*/
views.setPendingIntentTemplate(visible, pendingIntent); } else if (visible == R.id.viewflipper) {
// views.setPendingIntentTemplate(R.id.viewflipper, pendingIntentTemplate);
} AppWidgetManager am = AppWidgetManager.getInstance(context);
int[] appWidgetIds = am.getAppWidgetIds(new ComponentName(context, WidgetSetProvider.class));
for (int i = 0; i < appWidgetIds.length; i++) {
am.updateAppWidget(appWidgetIds[i], views); //更新 实例
} } }
执行的周期函数
点击stackview的效果图
Android Widget 小部件(四---完结) 使用ListView、GridView、StackView、ViewFlipper展示Widget的更多相关文章
- Android简易实战教程--第十四话《模仿金山助手创建桌面Widget小部件》
打开谷歌api,对widget小部件做如下说明: App Widgets are miniature application views that can be embedded in otherap ...
- 从Hello World说起(Dart)到“几乎所有东西都是Widget”小部件。
import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends S ...
- Android 快速开发系列 打造万能的ListView GridView 适配器
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38902805 ,本文出自[张鸿洋的博客] 1.概述 相信做Android开发的写 ...
- Android 桌面小部件
1. 添加AppWidgetProvider 实际上就是个带有界面的BroadcastReceiver public class SimpleWidgetProvider extends AppWid ...
- Odoo14 自定义widget小部件
不多说先上源码. 1 odoo.define('my_company_users_widget', function (require) { 2 "use strict"; 3 4 ...
- Android Widget 小部件(一) 简单实现
在屏幕上加入Widget:或长按屏幕空白处,或找到WidgetPreview App选择. 原生系统4.0下面使用长按方式,4.0及以上 打开WIDGETS 创建Widget的一般步骤: 在menif ...
- Android Widget 小部件(三) 在Activity中加入Widget
package com.stone.ui; import static android.util.Log.d; import android.app.Activity; import android. ...
- Android学习小Demo(21)ListView的联动选择
在日常的App开发中,尤其是在开发生活服务的应用上,非常多时候,我们会须要联动地展现省市区的数据等,需求大概例如以下: 1)展现全部省份 2)当点击某省份的时候,在二级菜单上展现此省份以下所属的城市列 ...
- django中widget小部件
1. 处理 input 的部件 TextInput NumberInput EmailInput URLInput PasswordInput HiddenInput DateInput Dat ...
随机推荐
- acdream 1211 Reactor Cooling 【边界网络流量 + 输出流量】
称号:acdream 1211 Reactor Cooling 分类:无汇的有上下界网络流. 题意: 给n个点.及m根pipe,每根pipe用来流躺液体的.单向的.每时每刻每根pipe流进来的物质要等 ...
- Linux 下开启ssh服务(转)
二.SSH SSH 为 Secure Shell 的缩写,由 IETF 的网络工作小组(Network Working Group)所制定:SSH 为建立在应用层和传输层基础上的安全协议.SSH 是目 ...
- gradle(转)
一.声明dependency 在build.gradle文件编辑以下代码: apply plugin: 'java' repositories { mavenCentral() } depen ...
- 在WPF中处理Windows消息
在Winform中 处理Windows消息通过重写WndProc方法 在WPF中 使用的是System.Windows. Sytem.Windows.Controls等名字空间,没有WndProc函数 ...
- 区分内边距与外边距padding和margin
以两个并排显示的div为例说明. 现在两个div都有背景颜色, 右边的div中有几行p, 若是想要使两个div之间有间隔, 即两块带了颜色区域之间产生空隙, 则给div的css中外边距margin赋值 ...
- 制作service服务,shell脚本小例子(来自网络)
事先准备工作:源码安装apache .安装目录为/usr/local/httpd 任务需求:1.可通过 service httpd start|stop|status|restart 命令对服务进行控 ...
- vpdn详细说明
VPDN英文为Virtual Private Dial-up Networks,又称为虚拟专用拨号网,是VPN业务的一种,是基于拨号用户的虚拟专用拨号网业务. 中文名 虚拟专用拨号网业务 外文名 ...
- [Java][Android][Process] 分享 Process 运行命令行封装类型
我在以前的文章中提到,使用Java不会有一个问题,创建运行命令来创建太多进程后创建进程行语句. [Android] ProcessBuilder与Runtime.getRuntime().exec分别 ...
- 【原创】构建高性能ASP.NET站点之一 剖析页面的处理过程(前端)
原文:[原创]构建高性能ASP.NET站点之一 剖析页面的处理过程(前端) 构建高性能ASP.NET站点之一 剖析页面的处理过程(前端) 前言:在对ASP.NET网站进行优化的时候,往往不是只是懂得A ...
- 解决Virtual Box 安装Mac OS X当出现“hfs: summary table not allowed on FS with block size of 2048”问题
解决Virtual Box 安装Mac OS X当出现"hfs: summary table not allowed on FS with block size of 2048"问 ...