所以我有一个服务,我试图显示一个警告对话框。这似乎是不可能的,所以我决定在我的应用程序的半透明活动中展示它。不过,我收到此错误:在半透明的活动中显示警告对话框
02-01 10:29:18.336 3806-3806/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.application.sweetiean.dummylocationupdates, PID: 3806
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.application.sweetiean.dummylocationupdates/com.application.sweetiean.dummylocationupdates.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2298)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.support.v7.app.AppCompatDelegateImplV9.createSubDecor(AppCompatDelegateImplV9.java:355)
at android.support.v7.app.AppCompatDelegateImplV9.ensureSubDecor(AppCompatDelegateImplV9.java:324)
at android.support.v7.app.AppCompatDelegateImplV9.onPostCreate(AppCompatDelegateImplV9.java:172)
at android.support.v7.app.AppCompatActivity.onPostCreate(AppCompatActivity.java:101)
at android.app.Instrumentation.callActivityOnPostCreate(Instrumentation.java:1186)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2280)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
这是我的主要活动类:
package com.application.sweetiean.dummylocationupdates;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.LocationManager;
import android.provider.Settings;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.view.ContextThemeWrapper;
import android.view.WindowManager;
import android.widget.Toast;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationServices;
import static com.application.sweetiean.dummylocationupdates.R.style.dialog;
public class MainActivity extends AppCompatActivity {
LocationManager locationManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_main);
Toast.makeText(this, "Background Services starting...", Toast.LENGTH_SHORT).show();
// use this to start and trigger a service
Intent i= new Intent(this, LocationUpdateService.class);
/*this.startService(i);
finish();*/
// potentially add data to the intent
locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
boolean enabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
// check if enabled and if not send user to the GSP settings
if (!enabled) {
showSettingsAlert();
} else {
this.startService(i);
finish();
}
//finish();
}
public void showSettingsAlert() {
//AlertDialog.Builder alertDialog = new AlertDialog.Builder(this);
AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(getApplication(), dialog));
builder.setTitle("GPS Settings");
builder.setMessage("GPS is not enabled. Do you want to enable it?");
//AlertDialog alert = builder.create();
builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
//stopSelf();
}
});
AlertDialog alert = builder.create();
alert.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
alert.show();
}
}
我现在用的是融合位置提供API在我的服务,我要确保用户在服务运行之前打开GPS。 我有这个在我的清单已经:<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
不完全相关的问题但它会心花怒放得到答案 什么是谷歌Play商店中的在运行位置服务整天应用的政策?由于我使用的是FusedLocationProvider API将在Play商店中拒绝我的应用程序,因为需要GPS为全日运行无论是在前台或后台或者,即使应用程序被杀害
为什么你会建议我使用LocationManager,与FusedLocation相比有什么优势。我以前使用位置管理器,并切换到谷歌播放服务api。另外,我可以使用具有半透明活动的appcompat主题吗?我只是开始得到这个错误,当我决定引入alertdialog –