このエラーを修正するためにすべてのインターネットWebサイトを検索しましたが、できませんでした。 [はい]と[いいえ]の2つのボタンを持つAlertDialogを作成したいだけです。
これは私のコードです:
import Android.content.DialogInterface;
import Android.support.v7.app.AlertDialog;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.view.View;
import Android.widget.Button;
public class DialogActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dialog);
Button btnDialog= (Button) findViewById(R.id.btnDialog);
btnDialog.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showDialogMessage();
}
});
}
private void showDialogMessage(){
AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
// Add the buttons
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// User clicked OK button
}
});
builder.setNegativeButton("NO", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// User cancelled the dialog
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
}
そして、これは私のスタイルです:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base">
<!-- Customize your theme here. -->
</style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
これは私のスタイルです(v21):
<resources>
<!-- extend one of the Theme.AppCompat themes -->
<style name="AppTheme" parent="AppTheme.Base">
<!-- customize the color palette -->
<item name="Android:colorPrimary">@color/colorPrimary</item>
<item name="Android:colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="Android:colorAccent">@color/colorAccent</item>
<item name="Android:windowTranslucentStatus">true</item>
<item name="Android:colorControlHighlight">@color/colorHighLight</item>
</style>
</resources>
これは明白です:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.saly.rastari" >
<application
Android:allowBackup="true"
Android:icon="@mipmap/ic_launcher"
Android:label="@string/app_name"
Android:theme="@style/AppTheme" >
<activity
Android:name=".DialogActivity"
Android:label="@string/title_activity_test"
Android:screenOrientation="portrait" >
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
ダイアログボタンをクリックすると、次のエラーが発生します。
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: FATAL EXCEPTION: main
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: Process: com.irannara.pda.pdaassistant, PID: 24352
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: Java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AppCompatDelegateImplV7.createSubDecor(AppCompatDelegateImplV7.Java:309)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AppCompatDelegateImplV7.ensureSubDecor(AppCompatDelegateImplV7.Java:278)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.Java:252)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AppCompatDialog.setContentView(AppCompatDialog.Java:76)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AlertController.installContent(AlertController.Java:216)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.support.v7.app.AlertDialog.onCreate(AlertDialog.Java:240)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.app.Dialog.dispatchOnCreate(Dialog.Java:373)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.app.Dialog.show(Dialog.Java:274)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at com.irannara.pda.pdaassistant.DialogActivity.showDialogMessage(DialogActivity.Java:42)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at com.irannara.pda.pdaassistant.DialogActivity.access$000(DialogActivity.Java:10)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at com.irannara.pda.pdaassistant.DialogActivity$1.onClick(DialogActivity.Java:21)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.view.View.performClick(View.Java:4780)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.view.View$PerformClick.run(View.Java:19866)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.os.Handler.handleCallback(Handler.Java:739)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.os.Handler.dispatchMessage(Handler.Java:95)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.os.Looper.loop(Looper.Java:135)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Android.app.ActivityThread.main(ActivityThread.Java:5254)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Java.lang.reflect.Method.invoke(Native Method)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at Java.lang.reflect.Method.invoke(Method.Java:372)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:903)
11-02 04:36:55.941 24352-24352/? E/AndroidRuntime: at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:698)
11-02 04:36:55.959 718-718/? E/EGL_emulation: tid 718: eglCreateSyncKHR(1209): error 0x3004 (EGL_BAD_ATTRIBUTE)
このリンクのどれも私を助けることができませんでした:
もっと。
どうすれば修正できますか?
「_values-v11
_」、「_values-v14
_」などの別の値フォルダーの横に別のスタイルファイルがある場合...テーマも編集し、実行する前にアプリをクリーンアップしてみてください。
編集:アクティビティの変更からgetApplicationContext()
をthis
に変更:
_AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
_
に
_AlertDialog.Builder builder = new AlertDialog.Builder(this);
_
ダイアログはAppcompat
テーマも拡張する必要があるためです。
アクティビティでこの問題が発生した場合は、アクティビティのテーマを明示的に構成してください。
<activity Android:name=".activities.BLEControlActivity" Android:theme="@style/Theme.AppCompat.DayNight"></activity>
AlertDialog
がアクティビティの実行中にAppCompatテーマを使用していないため、このエラーが発生しています。これを修正するには、次のように、getApplicationContext()
ではなく、アクティビティのthis
プロパティを使用します。
AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this);
アクティビティの名前の後に.this
、 この場合 DialogActivity.this
は、this
だけではなく常に使用する必要があります。ダイアログが別のクラス、たとえばある種のアダプタ内で作成された場合、Context
は、指定されたアダプタークラスの代わりに必要です。
あなたのstyle.xmlファイルに以下のコードを追加してください-
style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme.Base"
parent="@style/Theme.AppCompat.Light">
</style>
</resources>
このようなテーマもアクティビティで定義します
<activity
Android:name=".DialogActivity"
Android:label="@string/title_activity_test"
Android:screenOrientation="portrait"
Android:theme="@Android:style/AppTheme.Dialog">
OR
<activity
Android:name=".DialogActivity"
Android:label="@string/title_activity_test"
Android:screenOrientation="portrait"
Android:theme="@style/AppTheme">
プロジェクトをクリーンアップして再度実行します。
そんな事件に直面し、なんとか解決することができました。ここにあります:
_public class MainActivity extends AppCompatActivity {
AlertDialog.Builder alertDialog;
_
alertDialog = new AlertDialog.Builder(this);
_public void onFinish() {
alertDialog.setIcon(Android.R.drawable.alert_light_frame);
alertDialog.setTitle("You are done");
alertDialog.setMessage("you got it");
alertDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
runTheCode();
}
});
alertDialog.show();
_