- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 AccountAuthenticator 和 SyncAdapter 指示帐户的身份验证/同步状态。我已经完成了示例,并且可以正常工作。
如何像GMail账号一样设置指示灯为红色?
我还想在同步适配器页面上添加额外的状态指示器。见下图:
最佳答案
为 future 的团队知识回答我自己的问题...
经过一些实验后,让指示器改变颜色相当容易。首先根据SDK示例工程中提供的代码创建一个工程,修改如下:
1) 在 AuthenticationActivity 期间从服务器伪造初始登录。一旦通过初始检查,系统将开始其定期同步尝试。
/**
* Called when the authentication process completes (see attemptLogin()).
*/
public void onAuthenticationResult(boolean result) {
Log.i(TAG, "onAuthenticationResult(" + result + ")");
// Hide the progress dialog
hideProgress();
// Override the result, we don't care right now....
result = true;
if (result) {
if (!mConfirmCredentials) {
finishLogin();
} else {
finishConfirmCredentials(true);
}
} else {
Log.e(TAG, "onAuthenticationResult: failed to authenticate");
if (mRequestNewAccount) {
// "Please enter a valid username/password.
mMessage.setText(getText(R.string.login_activity_loginfail_text_both));
} else {
// "Please enter a valid password." (Used when the
// account is already in the database but the password
// doesn't work.)
mMessage.setText(getText(R.string.login_activity_loginfail_text_pwonly));
}
}
}
2) 修改SyncAdapter中的“onPerformSync()”方法。这里的关键是“syncResult.stats”字段。在修改的时候,我发现插入多个错误并没有得到我想要的效果。还注意到计数似乎没有在同步尝试中记录(即失败总是以零出现)。 “lifetimeSyncs”是一个静态变量,用于对同步尝试进行计数。这段修改后的代码会不断的在绿色和红色之间交替...
@Override
public void onPerformSync(Account account, Bundle extras, String authority, ContentProviderClient provider, SyncResult syncResult) {
List<User> users;
List<Status> statuses;
String authtoken = null;
try {
// use the account manager to request the credentials
authtoken = mAccountManager.blockingGetAuthToken(account, Constants.AUTHTOKEN_TYPE, true );
// fetch updates from the sample service over the cloud
//users = NetworkUtilities.fetchFriendUpdates(account, authtoken, mLastUpdated);
// update the last synced date.
mLastUpdated = new Date();
// update platform contacts.
Log.d(TAG, "Calling contactManager's sync contacts");
//ContactManager.syncContacts(mContext, account.name, users);
// fetch and update status messages for all the synced users.
//statuses = NetworkUtilities.fetchFriendStatuses(account, authtoken);
//ContactManager.insertStatuses(mContext, account.name, statuses);
if (SyncAdapter.lifetimeSyncs-- <= 0 ){
//mAccountManager.invalidateAuthToken(Constants.ACCOUNT_TYPE, authtoken);
syncResult.stats.numAuthExceptions++;
//syncResult.delayUntil = 60;
lifetimeSyncs = 5;
}
} catch (final AuthenticatorException e) {
syncResult.stats.numParseExceptions++;
Log.e(TAG, "AuthenticatorException", e);
} catch (final OperationCanceledException e) {
Log.e(TAG, "OperationCanceledExcetpion", e);
} catch (final IOException e) {
Log.e(TAG, "IOException", e);
Log.d(TAG, extras.toString());
syncResult.stats.numAuthExceptions++;
syncResult.delayUntil = 60;
//extras.putString(AccountManager.KEY_AUTH_FAILED_MESSAGE, "You're not registered");
} catch (final ParseException e) {
syncResult.stats.numParseExceptions++;
Log.e(TAG, "ParseException", e);
}
}
就是这样,享受延迟和其他变量的乐趣......
关于android - 将帐户同步指示器设置为红色(或其他颜色),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6067136/
我刚刚编辑了现有的指标脚本之一,并向其添加了警报功能,而没有中断脚本的其他部分。然而,当我将修改后的脚本添加到图表中时,TradingView 立即重定向到原始脚本/指标。有谁知道这可能是什么问题吗?
我刚刚编辑了现有的指标脚本之一,并向其添加了警报功能,而没有中断脚本的其他部分。然而,当我将修改后的脚本添加到图表中时,TradingView 立即重定向到原始脚本/指标。有谁知道这可能是什么问题吗?
我对在我的 Silverlight 应用程序中包含一个“throbber”很感兴趣,但由于它是如此常见,我想下载一个或遵循一些简单的教程。你能推荐一个可以在这方面指导我的网站,或者可以提供一个供我下载
我正在使用 RAD Studio 4 C++ 构建器,并希望在我的数据源从数据库中获取数据时显示一个指示轮。我知道 FireMonkey 有一个 Indicator wheel 但 c++ build
我正在努力使用 Android ToggleButton,因为我试图更改绿色指示灯。在 Android SDK 文件夹中,我找到了文件 drawable\btn_toggle_bg.xml ,它说
如何在 Android 中显示 Activity 指示器?是否有任何 Android 库给定的方法?如果不是,请告诉我在 Android 中用于显示 Activity 指示器的技术? 最佳答案 And
在 Flutter我如何绘制边框半径选项卡指示器,如下图所示? 下面的代码只能绘制我在 github 中找到的圆形指示器. TabBar( isScrollable: true, contro
有没有办法获得相当于 _merge合并后的指标变量 dplyr ? 类似于 Pandas indicator = True选项基本上告诉你合并是如何进行的(每个数据集有多少匹配项等)。 这是 Pand
如何实现红色数字指示器(例如电子邮件计数通知)? 最佳答案 您正在寻找的是 applicationIconBadgeNumber 属性,它是 UIApplication 的属性。 要从应用中的任何位置
我目前正在为客户开发一个应用程序,他们提出了一个奇怪的请求。该请求涉及将自定义图像作为 ScrollView 的指示器。我什至不确定这是否可能,但如果可以,请让我知道如何做到这一点。 谢谢 最佳答案
有人知道 iPhone UISlider 控件有两个拇指的版本吗?我需要一个允许指定一系列值的控件。 UISlider API 文档暗示这对于标准控件来说是不可能的,所以我想知道是否有人对此有解决方案
我有一个 swing GUI 应用程序,其中包含一个框架类 MainFrame 和一个扩展 JPanel 的类 PanelPlan。我通过使用 BufferedReader 逐行读取文本文件并进行其他
我在 ember 路由中有一些模型。 model() { return this.get('store').query('orders', {}) } 我还有适配器,可以发送 ajax。 型号
我编写了一个程序来替换文件中的字符串。我在 C 中以 r+ 模式打开文件。现在一切正常,但是当程序替换字符串时,文件大小将减小,例如我有一个内容为 的文件 abcDEFgh 我想把DEF换成AA,就变
Currenlty 我在一个项目中工作,我必须从图库中选择多个图像,并且必须将所有选定的图像显示为可滑动 View (viewpager 指示器)。我已经看过很多示例,但在每个示例中我都找到了带有 v
我有一个数据类型为 JSON 的 AJAX 调用,当运行 AJAX 调用时,进度百分比显示在“console.log”中,但在完成上传文件之前达到百分比 100%在磁盘上。如何将百分比与流程的实际进度
我正在使用下面的代码。但当您旋转屏幕或重新运行应用程序时它会起作用。 pager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeLis
我是 android 的新手。我需要在同步时显示 Activity 指示器。单击按钮时,我将重定向到新 Activity 。在这个新 Activity 中,我正在同步。我需要在单击按钮时显示 Acti
是否可以添加 Activity 指示器作为警报的一部分?我需要这个,因为很难在白色背景中显示警报 View 。请提出想法。 最佳答案 我实际上是在搜索进度对话框...加载指示器 + 消息......
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0,
我是一名优秀的程序员,十分优秀!