- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有电池 BroadcastReceiver
通过 Intent 过滤器 BATTERY_LOW
和 BATTERY_OKAY
,这个接收器工作正常但是当显示低电量警告时(电池百分比低于 15百分比),应用程序因此日志崩溃:
12-18 03:13:49.651 1802-1802/ E/AndroidRuntime: FATAL EXCEPTION: main Process: , PID: 1802 java.lang.RuntimeException: Unable to instantiate receiver receivers.BatteryLevelReceiver: java.lang.ClassNotFoundException: Didn't find class "receivers.BatteryLevelReceiver" on path: DexPathList[[zip file "/data/app/-1.apk", zip file "/data/data//code_cache/secondary-dexes/-1.apk.classes2.zip", zip…
BatteryLevelReceiver:
public class BatteryLevelReceiver extends BroadcastReceiver {
private static final String TAG = BatteryLevelReceiver.class.getSimpleName();
@Override
public void onReceive(Context context, Intent intent) {
try {
int curentPercent = getBatteryPercentage(context);
Log.e(TAG, "getBatteryPercentage: " + curentPercent);
} catch (Exception e){
e.printStackTrace();
}
}
public static int getBatteryPercentage(Context context) {
try {
if (Build.VERSION.SDK_INT >= 21) {
BatteryManager bm = (BatteryManager) context.getSystemService(Context.BATTERY_SERVICE);
return bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY);
} else {
IntentFilter iFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
Intent batteryStatus = context.registerReceiver(null, iFilter);
int level = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1) : -1;
int scale = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1) : -1;
double batteryPct = level / (double) scale;
return (int) (batteryPct * 100);
}
}catch(Exception e) {
e.printStackTrace();
Log.e(TAG, "getBatteryPercentage: ");
}
return 1111;
}
}
AndroidManifest:
<application
android:name=".AppController"
android:allowBackup="true"
android:icon="@mipmap/ic_logo"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:supportsRtl="true"
android:largeHeap="true"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme">
...
<receiver android:name="receivers.BatteryLevelReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BATTERY_LOW"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.BATTERY_OKAY"/>
</intent-filter>
</receiver>
</application>
应用类:
public class AppController extends MultiDexApplication {
...
@Override
public void onCreate() {
super.onCreate();
MultiDex.install(this);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
}
Gradle :
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 28
defaultConfig {
...
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
externalNativeBuild {
cmake {
cppFlags "-std=c++11"
}
}
vectorDrawables.useSupportLibrary = true
}
dexOptions {
jumboMode true
javaMaxHeapSize "4g"
}
buildTypes {
release {
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled true
// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
shrinkResources true
// Includes the default ProGuard rules files that are packaged with
// the Android Gradle plugin. To learn more, go to the section about
// R8 configuration files.
proguardFiles getDefaultProguardFile(
'proguard-android-optimize.txt'),
'proguard-rules.pro'
}
debug{
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled true
// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
shrinkResources true
// Includes the default ProGuard rules files that are packaged with
// the Android Gradle plugin. To learn more, go to the section about
// R8 configuration files.
proguardFiles getDefaultProguardFile(
'proguard-android-optimize.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
...
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'com.android.support:multidex:1.0.3'
}
apply plugin: 'com.google.gms.google-services'
我将 Intent 操作从“低”更改为“已更改”,但问题并未解决。
最佳答案
您正在尝试在广播接收器中注册广播接收器,
删除Intent batteryStatus = context.registerReceiver(null, iFilter);
在 Activity/Fragment 中注册你的服务
如果你想发送广播,你应该调用context.sendBroadcast
关于android - BroadcastReceiver BATTERY_LOW 在显示低电量警告时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59392231/
我有电池 BroadcastReceiver 通过 Intent 过滤器 BATTERY_LOW 和 BATTERY_OKAY,这个接收器工作正常但是当显示低电量警告时(电池百分比低于 15百分比),
我是一名优秀的程序员,十分优秀!