- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:应用小部件在添加时启动一些配置屏幕,然后在按下时执行一些操作,同样基于配置屏幕上的信息输入。并允许小部件的多个实例,每个实例都有自己的配置。我在实现许多示例时遇到的错误:
最佳答案
我是这样做的。如果您正在复制示例 - 请记住更改包名称的所有实例(Eclipse 会提供帮助)。
可能有更简单/更好的方法来做到这一点,但我的方法有效并且拥有所有信息。我在代码中留下了所有悲惨的评论,因为让它工作所涉及的痛苦......据我所知 - 留下任何东西只会杀死我上面问题中列出的功能之一。干杯,尼尔
首先 - list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ntasher.afcon"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.ntasher.afcon.SettingsPage"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<!-- Broadcast Receiver that will process AppWidget Updates -->
<receiver
android:icon="@drawable/ic_launcher"
android:name="com.ntasher.afcon.MyAppWidgetProvider"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widgetprovider" />
</receiver>
</application>
</manifest>
现在 - 布局 - activity_main.xml:
<RelativeLayout 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:padding="20dp"
tools:context=".MainActivity">
<TextView
android:id="@+id/id_tv"
android:paddingBottom="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textSize="18dp"
android:text="@string/hello_world" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/id_tv"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/editText1"
android:textStyle="bold"
android:text="Save" />
</RelativeLayout>
和widget_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget_root"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/ic_launcher"
android:baselineAligned="false"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Widget Text"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
widgetprovider.xml:
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="72dip"
android:minHeight="72dip"
android:updatePeriodMillis="100000"
android:configure="com.ntasher.afcon.SettingsPage"
android:initialLayout="@layout/widget_main"/>
类(class):SettingsPage.java(主要 Activity ):
package com.ntasher.afcon;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RemoteViews;
import android.widget.TextView;
import android.widget.Toast;
public class SettingsPage extends Activity {
int thisWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID;
public static String ACTION_WIDGET_CONFIGURE = "WIDGET_CONFIGURED";
public static String ACTION_WIDGET_UPDATE = "WIDGET_UPDATED";
SharedPreferences customSharedPreference;
EditText ed = null;
Button save = null;
TextView widgetId = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ed = (EditText) findViewById(R.id.editText1);
save = (Button) findViewById(R.id.button1);
widgetId = (TextView) findViewById(R.id.id_tv);
save.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
//updateWidget();
if (ed.getText().toString().trim().length() > 0) {
saveToPreferences("Widget" + thisWidgetId, ed.getText()
.toString().trim());
updateWidget(thisWidgetId);
setResultDataToWidget(RESULT_OK);
} else
setResultDataToWidget(RESULT_CANCELED);
}
});
getIdOfCurrentWidget(savedInstanceState);
}
/** Get the Id of Current Widget from the intent of the Widget **/
void getIdOfCurrentWidget(Bundle savedInstanceState) {
setResult(RESULT_CANCELED);
Bundle extras = getIntent().getExtras();
if (extras != null) {
thisWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID,
AppWidgetManager.INVALID_APPWIDGET_ID);
if (getWidgetData("Widget" + thisWidgetId) != null) {
save.setText("Update");
ed.append(getWidgetData("Widget" + thisWidgetId));
}
widgetId.setText("Widget ID = " + thisWidgetId);
}
// If they gave us an intent without the widget id, just bail.
if (thisWidgetId == AppWidgetManager.INVALID_APPWIDGET_ID) {
finish();
}
}
/**
* Update the Current Widget - This is very important to ensure the widget
* is enabled
**/
void updateWidget(int thisWidgetId) {
//Intent clickIntent=new Intent();
/*Intent clickIntent = getIntent();
//clickIntent.setClass(getBaseContext(), MyAppWidgetProvider.class);
clickIntent.setAction(ACTION_WIDGET_UPDATE);
remoteViews.setTextViewText(R.id.textView1, ed.getText().toString()
.trim());
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, thisWidgetId);
//PendingIntent pendingIntent = PendingIntent.getActivity(this,
// 0, clickIntent, 0);
PendingIntent pendingIntent = PendingIntent.getActivity(this,
thisWidgetId, clickIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.widget_root, pendingIntent);
// update this widget
appWidgetManager.updateAppWidget(thisWidgetId, remoteViews);*/
Intent updateIntent=new Intent(this, MyAppWidgetProvider.class);
updateIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
updateIntent.setData(Uri.withAppendedPath(Uri.parse("abcdef" + "://widget/id/"), String.valueOf(thisWidgetId)));
//updateIntent.setClass(getBaseContext(), MyAppWidgetProvider.class);
updateIntent.putExtra("ID",thisWidgetId);
sendBroadcast(updateIntent);
Toast.makeText(this,"upd Widget",
Toast.LENGTH_SHORT).show();
}
void setResultDataToWidget(int result) {
Intent resultValue = new Intent();
resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, thisWidgetId);
setResult(result, resultValue);
finish();
}
@SuppressLint("WorldWriteableFiles")
public void saveToPreferences(String file_name, String data) {
@SuppressWarnings("deprecation")
SharedPreferences myPrefs = getSharedPreferences("Data",
MODE_WORLD_WRITEABLE);
SharedPreferences.Editor prefsEditor = myPrefs.edit();
prefsEditor.putString(file_name, data);
prefsEditor.commit();
}
@SuppressLint("WorldReadableFiles")
@SuppressWarnings("deprecation")
public String getWidgetData(String file_name) {
SharedPreferences myPrefs = getSharedPreferences("Data",
MODE_WORLD_READABLE);
return (myPrefs.getString(file_name, null));
}
最后是 MyAppWidgetPROvider.java
package com.ntasher.afcon;
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.content.SharedPreferences;
import android.net.Uri;
import android.util.Log;
import android.widget.RemoteViews;
import android.widget.Toast;
public class MyAppWidgetProvider extends AppWidgetProvider {
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
Log.i("onUpdate", "AAA");
Toast.makeText(context,"OnUpdate",
Toast.LENGTH_SHORT).show();
ComponentName thisWidget = new ComponentName(context,
MyAppWidgetProvider.class);
int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);
for (int widgetId : allWidgetIds) {
RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
R.layout.widget_main);
// Set the text - from saved sharedpreferences
String widgetText=getWidgetData(context,"Widget" + widgetId);
remoteViews.setTextViewText(R.id.textView1, widgetText+String.valueOf(widgetId));
// Register an onClickListener
Intent intent = new Intent(context, MyAppWidgetProvider.class);
//*****THE FOLLOWING IS A MUST!!!
//if no intent.setData to something very specific, the intents for each widget are UNIFIED into one intent and
//this intent will be the original intent with no ID at all
//************************************
intent.setData(Uri.withAppendedPath(Uri.parse("abc" + "://widget/id/"), String.valueOf(widgetId)));
//************************************
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds); //<<<<CHECK IF NEEDED
intent.putExtra("ID",widgetId);// <<this is used by the onReceive to identify the widget pressed
PendingIntent pendingIntent = PendingIntent.getBroadcast(context,
0, intent, 0);
remoteViews.setOnClickPendingIntent(R.id.widget_root, pendingIntent);
appWidgetManager.updateAppWidget(widgetId, remoteViews);
}
super.onUpdate(context, appWidgetManager, appWidgetIds);
}
/*
* This is called when an instance the App Widget is created for the first
* time.
*/
@Override
public void onEnabled(Context context) {
super.onEnabled(context);
Log.i("onEnabled", "AAA");
}
/*
* This is called for every broadcast and before each of the above callback
* methods.
*/
@Override
public void onReceive(Context context, Intent intent) {
int thisWidgetId=intent.getIntExtra("ID", -1);
String widgetText=getWidgetData(context,"Widget" + thisWidgetId);
Toast.makeText(context,"onReceive:"+Integer.toString(thisWidgetId)+widgetText,
Toast.LENGTH_SHORT).show();
/*the following is required for showing the right name when adding the widget otherwise the name will be null*/
ComponentName thisWidget = new ComponentName(context, MyAppWidgetProvider.class);
AppWidgetManager appWidgetManager= AppWidgetManager.getInstance(context);
int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);
for (int widgetId : allWidgetIds) {
if (widgetId==thisWidgetId)
{
RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
R.layout.widget_main);
remoteViews.setTextViewText(R.id.textView1, widgetText+String.valueOf(thisWidgetId));
appWidgetManager.updateAppWidget(thisWidgetId, remoteViews);
}
}
super.onReceive(context, intent);
Log.i("onReceive", "AAA");
}
/*
* This is called When all instances of App Widget is deleted from the App
* Widget host.
*/
@Override
public void onDisabled(Context context) {
// Unschedule any timers and tasks
super.onDisabled(context);
}
/*
* This is called every time an App Widget is deleted from the App Widget
* host.
*/
@Override
public void onDeleted(Context context, int[] appWidgetIds) {
// Unschedule any timers and tasks
super.onDeleted(context, appWidgetIds);
}
public String getWidgetData(Context context, String file_name) {
@SuppressWarnings("deprecation")
SharedPreferences myPrefs = context.getSharedPreferences("Data",Context.MODE_WORLD_READABLE);
return (myPrefs.getString(file_name, null));
}
}
关于android - 具有配置 Activity 的多个小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28049544/
我想向一些用户公开一个 Web 部件,但不是所有用户。如何在“添加 Web 部件”弹出窗口中显示或隐藏 Web 部件?我想通过代码来做到这一点,我希望使用 SharePoint 角色来实现这一点。 最
我无法创建两个以上的 StatusBar 部分: HWND hStatusBar = CreateWindowEx(0, STATUSCLASSNAME, "", WS_CHILD | WS_VISI
使用 SharePoint 2007,如何在编辑页面模式下允许将 CEWP 添加到“添加 Web 部件”对话框的选择菜单?目前,我只能添加公告、日历、链接、共享文档、任务,但我无法添加 CEWP。我可
哪个 Web 部件以及如何配置它以查看来自不同网站集的列表? 请注意,我不想查看页面,而是查看列表。例如,在单独的网站集下查看来自不同团队网站的公告。 预先感谢您的帮助。 最佳答案 Data Form
以下是我在 FeatureDeactivation 事件处理程序中添加的代码片段。我无法获得删除 System.Web.UI.WebControls.WebParts 类型的 webpart 的解决方
我一直在尝试跟踪来自以下方面的信息: Long URL clipped to stop breaking the page 和 http://msdn.microsoft.com/en-us/libr
我想创建一个自定义 Web 部件,它具有 1 个以上的筛选器 Web 部件,并且可以在运行时/设计时连接到报表查看器 Web 部件(集成模式)。 我为此搜索了很多,但找不到一种方法来让单个 Web 部
我正在尝试创建一个 Web 部件,使用户无需离开 AllItems.aspx 页面即可编辑项目。 Web 部件应具有与 EditForm.aspx 页面类似的功能。 我已经使用 ConnectionC
这些年发布的许多应用程序都有新的 GUI 部件。iTunes 或 Twitter.app 中垂直布局的最小、最大和关闭按钮(但最新的具有默认布局),Safari 和终端中的选项卡控件,GarageBa
在具有数据库依赖性的 WSS3 或 MOSS2007 中部署 Web 部件的最佳方法是什么? .wsp 是否应该包含创建数据库的代码,我应该将 .wsp 封装在另一个处理数据库创建的安装程序中,还是应
我在我们位于 http://sharepoint:12345 的 moss 服务器上创建了一个新的共享点站点并毫无问题地向其添加了 CQWP。 我有一个指向同一台服务器的域名。所以我指向了http:/
在官方 Office 2007 站点中有许多对筛选器 Web 部件的引用。当我尝试添加其中之一时,我的 Sharepoint 中的 Web 部件列表没有显示任何筛选器 Web 部件。 如果有人遇到相同
我被要求在 Sharepoint 中创建一个 Web 部件,列出用户在网站集中访问的最后 10 个文档。 我的客户想要一种快速的方式让用户访问文档,这样他们就不必翻遍文件夹结构来查找文档,因为大多数时
我需要使用 C# 以编程方式将 SharePoint Web 部件“站点用户”添加到页面。 我知道如何添加 Web 部件,但如何从 Share Point 获取“站点用户”Web 部件?我不知道如何实
我正在使用 MEF 在我的应用程序中加载插件。一切正常,但我希望在将新部件放入我的应用程序文件夹时发现它们。这可能吗? DirectoryCatalog 有一个 Changed 事件,但我不确定它是如
我有一个 Winforms 桌面应用程序正在加载具有相同接口(interface)类型的多个 MEF 部件。 问题:当我尝试加载多个相同类型时,出现以下异常: 组成保持不变。由于以下错误,更改被拒绝:
我有一个内容查询 Web 部件,它按内容类型对网站集进行查询。我已按内容类型对其进行了分组,因此我有: -- Agenda (Content Type) ----Agenda #1 ----Agend
考虑以下 SharePoint 站点层次结构: - Site Collection - Site1 - Subsite1 - AnotherSubsite1
好吧,在我的 SharePoint (2013) 网站中,我制作了一个简单的 JavaScript Web 部件,每五分钟刷新一次页面。我去调整时间,在刷新前输入等待时间的地方退格,然后不假思索地退出
我不知道 Sharepoint 脚本,我的同事也不知道 JavaScript。他使用了他在 http://www.wonderlaura.com/Lists/Posts/Post.aspx?ID=22
我是一名优秀的程序员,十分优秀!