- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我将我的 API 目标更新为 28。我必须做一些更改。我从大量用户 (8,396) 那里收到故障转储错误,并出现 IllegalStateException 异常。
java.lang.RuntimeException:
at android.app.ActivityThread.handleReceiver (ActivityThread.java:3584)
at android.app.ActivityThread.access$1300 (ActivityThread.java:235)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1779)
at android.os.Handler.dispatchMessage (Handler.java:106)
at android.os.Looper.loop (Looper.java:214)
at android.app.ActivityThread.main (ActivityThread.java:6981)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:493)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1445)
Caused by: java.lang.IllegalStateException:
at android.app.ContextImpl.startServiceCommon (ContextImpl.java:1666)
at android.app.ContextImpl.startService (ContextImpl.java:1611)
at android.content.ContextWrapper.startService (ContextWrapper.java:677)
at android.content.ContextWrapper.startService (ContextWrapper.java:677)
at ch.corten.aha.worldclock.WorldClockWidgetProvider.onClockTick (WorldClockWidgetProvider.java:147)
at ch.corten.aha.worldclock.ClockWidgetProvider.onReceive (ClockWidgetProvider.java:115)
at android.app.ActivityThread.handleReceiver (ActivityThread.java:3575)
@Override
protected void onClockTick(Context context) {
Intent service = new Intent(context, WorldClockWidgetService.class);
context.startService(service);
}
@Override
public void onReceive(Context context, Intent intent) {
Log.e(TAG, "Onrecive called Biswajit");
super.onReceive(context, intent);
if (WIDGET_DATA_CHANGED_ACTION.equals(intent.getAction())
|| CLOCK_TICK_ACTION.equals(intent.getAction())) {
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
if (pm.isScreenOn()) {
onClockTick(context);
}
}
}
所有报告的设备都是 Android 9 和 API 29。
dependencies {
//compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
//compile 'com.android.support:support-v4:19.1.0'
implementation 'com.github.javiersantos:AppUpdater:2.7'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'net.danlew:android.joda:2.9.4.1'
implementation 'com.google.android.gms:play-services-ads:9.8.0'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:22.2.1'
implementation 'com.facebook.android:audience-network-sdk:4.28.2'
}
import android.content.Intent;
public class WorldClockWidgetService extends IntentService {
public WorldClockWidgetService() {
super("WorldClockWidgetService");
}
建议的解决方案?
public class WorldClockWidgetService extends IntentService {
public WorldClockWidgetService() {
super("WorldClockWidgetService");
}
@Override
protected void onHandleIntent(Intent intent) {
WorldClockWidgetProvider.updateTime(this);
}
}
将替换为
public class WorldClockWidgetService extends JobIntentService {
public WorldClockWidgetService() {
super("WorldClockWidgetService");
}
@Override
protected void onHandleWork(Intent intent) {
WorldClockWidgetProvider.updateTime(this);
}
}
错误:获取错误
WorldClockWidgetProvider 的内容
public class WorldClockWidgetProvider extends ClockWidgetProvider {
private static final boolean SANS_JELLY_BEAN_MR1 = Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1;
static {
registerClockWidget(WorldClockWidgetProvider.class);
}
@Override
protected void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId) {
updateAppWidgetStatic(context, appWidgetManager, appWidgetId);
}
private static void updateAppWidgetStatic(Context context, AppWidgetManager appWidgetManager, int appWidgetId) {
// Create an Intent to launch WorldClockActivity
Intent intent = new Intent(context, WorldClockActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener
// to the button
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.world_clock_widget);
views.setOnClickPendingIntent(R.id.app_widget, pendingIntent);
// update view
updateViews(context, views);
// Tell the AppWidgetManager to perform an update on the current app widget
appWidgetManager.updateAppWidget(appWidgetId, views);
}
private static final String[] PROJECTION = {
Clocks.TIMEZONE_ID,
Clocks.CITY
};
private static final int[] CITY_IDS = {
R.id.city_text1,
R.id.city_text2,
R.id.city_text3,
R.id.city_text4,
};
private static final int[] TIME_IDS = {
R.id.time_text1,
R.id.time_text2,
R.id.time_text3,
R.id.time_text4,
};
private static void updateViews(Context context, RemoteViews views) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean autoSort = prefs.getBoolean(context.getString(R.string.auto_sort_clocks_key), true);
Cursor cursor = Clocks.widgetList(context, PROJECTION, autoSort);
try {
int n = 0;
DateFormat df = android.text.format.DateFormat.getTimeFormat(context);
long now = DateTimeUtils.currentTimeMillis();
final int maxEntries = context.getResources().getInteger(R.integer.worldclock_widget_max_entries);
while (cursor.moveToNext() && n < CITY_IDS.length
&& n < maxEntries) {
String id = cursor.getString(cursor.getColumnIndex(Clocks.TIMEZONE_ID));
String city = cursor.getString(cursor.getColumnIndex(Clocks.CITY));
views.setTextViewText(CITY_IDS[n], city);
DateTimeZone tz = DateTimeZone.forID(id);
if (SANS_JELLY_BEAN_MR1) {
views.setTextViewText(TIME_IDS[n], TimeZoneInfo.formatDate(df, tz, now));
} else {
TimeZone javaTimeZone = TimeZoneInfo.convertToJavaTimeZone(tz, now);
views.setViewVisibility(TIME_IDS[n], View.VISIBLE);
RemoteViewUtil.setTextClockTimeZone(views, TIME_IDS[n], javaTimeZone.getID());
}
n++;
}
int showEmptyText = (n == 0) ? View.VISIBLE : View.INVISIBLE;
views.setViewVisibility(R.id.empty_text, showEmptyText);
for (; n < CITY_IDS.length; n++) {
views.setTextViewText(CITY_IDS[n], "");
if (SANS_JELLY_BEAN_MR1) {
views.setTextViewText(TIME_IDS[n], "");
} else {
views.setViewVisibility(TIME_IDS[n], View.INVISIBLE);
}
}
boolean customColors = prefs.getBoolean(context.getString(R.string.use_custom_colors_key), false);
int textColor = Color.WHITE;
if (customColors) {
int color = prefs.getInt(context.getString(R.string.background_color_key), Color.BLACK);
RemoteViewUtil.setBackgroundColor(views, R.id.app_widget, color);
textColor = prefs.getInt(context.getString(R.string.foreground_color_key), Color.WHITE);
} else {
RemoteViewUtil.setBackground(views, R.id.app_widget, R.drawable.appwidget_dark_bg);
}
for (int i = 0; i < CITY_IDS.length; i++) {
views.setTextColor(CITY_IDS[i], textColor);
views.setTextColor(TIME_IDS[i], textColor);
}
} finally {
if (cursor != null) {
cursor.close();
}
}
}
@Override
protected void onClockTick(Context context) {
Intent service = new Intent(context, WorldClockWidgetService.class);
context.startService(service);
}
static void updateTime(Context context) {
// update on the hour
final long minutes = System.currentTimeMillis() / (60000);
if (minutes % 60 == 0) {
Clocks.updateOrder(context);
}
// Get the widget manager and ids for this widget provider, then call the shared
// clock update method.
ComponentName thisAppWidget = new ComponentName(context.getPackageName(), WorldClockWidgetProvider.class.getName());
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
int[] ids = appWidgetManager.getAppWidgetIds(thisAppWidget);
for (int appWidgetID: ids) {
updateAppWidgetStatic(context, appWidgetManager, appWidgetID);
}
}
最佳答案
如以下链接所述:
https://developer.android.com/about/versions/oreo/android-8.0-changes#back-all
Android 8.0 (API level 26) also includes the following changes to specific methods:
The
startService()
method now throws anIllegalStateException
if an app targeting Android 8.0 tries to use that method in a situation when it isn't permitted to create background services.
https://developer.android.com/about/versions/oreo/background.html
Note:
IntentService
is a service, and is therefore subject to the new restrictions on background services. As a result, many apps that rely on IntentService do not work properly when targeting Android 8.0 or higher. For this reason, Android Support Library 26.0.0 introduces a newJobIntentService
class, which provides the same functionality as IntentService but uses jobs instead of services when running on Android 8.0 or higher.
因此您需要查看 JobIntentService 和 JobScheduler 类并用它替换旧的后台服务代码。
参见 https://developer.android.com/reference/android/support/v4/app/JobIntentService有关此类工作的示例。
关于Android 9 上的 java.lang.IllegalStateException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57017032/
我有一个坦克射击弹药的游戏。我对这部分代码的目标是检查它们是否与“碰撞”磁贴发生碰撞,如果是,则将其和磁贴移除。 代码如下所示,每 1/60 秒检查一次: Iterator iterator = sh
我尝试使用 JSR-303 注释(类级别)和验证器实现为 play 2.0.1 编写自定义表单验证器。 不幸的是,当我提交表单并且验证失败时,我收到了一个 IllegalStateException,
根据answer of BalusC ,我用过 FacesContext.getCurrentInstance().getExternalContext().redirect(url); 在我的 @P
这个问题已经有答案了: Copy a stream to avoid "stream has already been operated upon or closed" (10 个回答) 已关闭 5
这个问题已经有答案了: Spring: getOutputStream() has already been called for this response (3 个回答) 已关闭 4 年前。 我正
我正在尝试将 Activity 转换为 FragmentActivty 对象,以便获得 FragmentManager 对象 public class Main extends ListActivit
我正在尝试使用可编辑的组合框,通过用户的某些击键从数据库中快速搜索客户端的功能。我想要的是,用户将输入一些字母,如果这些字母与某些客户端匹配,这些客户端将保留在组合框的当前数据模型中。 代码如下。请修
这个问题已经有答案了: You need to use a Theme.AppCompat theme (or descendant) with this activity. Change to Th
我正在使用 Android Studio 和 Genymotion 作为模拟器创建一个应用程序,其中我在 3 个 EditText 中输入数据,当我单击按钮将其存储在 sqlite 数据库中时,它不起
我正在为 Android 构建一个简单的消息应用程序,并且在发送短信时遇到一些问题。我第一次使用 OnlickListener 时,消息被发送并显示在我的 ListView 中。当我在 Activit
我了解到 collect() 和 forEach() 都是流终端操作,在同一个流上调用它们会抛出 非法状态异常。但是,以下代码可以成功编译并按升序打印每个字符串的长度。不会引发任何异常。怎么会这样?
我对 classcastException 和非法状态异常都有点困惑,因为在大多数情况下它们看起来都很相似。 我在这个java代码中遇到了一个问题 class consumer {
我正在尝试这个小计算器程序。当我调用calculateResult()方法时,我想在第二个操作数为零且运算符为除法时显示IllegalStateException错误。但尽管如此,我在calculat
Stacktrace Here 导入java.util.*; 公共(public)类 AccountClient { public static void main(String[] args) {
我正在使用 readEntity() 方法读取 JAVAX 响应,但我收到以下堆栈跟踪: java.lang.IllegalStateException: Entity input stream ha
我是安卓新手。我正在尝试进行简单的登录 Activity ,但当我单击“登录”按钮时出现运行时错误。我认为我没有正确获取数据。我已经检查过,SQLite 中有一个与该 PK 相对应的数据。 日志猫。
我正在创建一个登录页面,工程师可以通过以“engg”开头的用户名登录。问题出在登录页面,当我使用正确的密码提供正确的输入时,它会给出“非法状态异常”。在错误的输入中,它工作正常。就像当我在我的 ora
我正在使用一些现有的 Java 设备驱动程序软件,该软件使用 JavaCOMM 进行串行 I/O。我昨天看到它抛出一个异常,其中有一个 IllegalStateException - 端口从 publ
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我正在使用 Adventnet SNMPAPI 开发 UDP 监听程序。现在我需要将监听数据保存到数据库中。当我这样做时,我遇到了错误。任何人都可以帮忙解决这个问题吗... 这是我的代码。 impor
我是一名优秀的程序员,十分优秀!