Android 1.6:“ android.view.WindowManager $ BadTokenException: ไม่สามารถเพิ่มหน้าต่าง - โทเค็น null ไม่ได้สำหรับแอปพลิเคชัน”


303

ฉันพยายามเปิดหน้าต่างข้อความ แต่ทุกครั้งที่ฉันพยายามเปิดมันจะมีข้อผิดพลาดนี้เกิดขึ้น:

Uncaught handler: thread main exiting due to uncaught exception
android.view.WindowManager$BadTokenException: 
     Unable to add window -- token null is not for an application
  at android.view.ViewRoot.setView(ViewRoot.java:460)
  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
  at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
  at android.app.Dialog.show(Dialog.java:238)
  at android.app.Activity.showDialog(Activity.java:2413)

ฉันกำลังสร้างมันด้วยการโทรshowDialogด้วยรหัสของจอแสดงผล onCreateDialogจัดการล็อกที่ดีและผมสามารถก้าวผ่านมันโดยไม่มีปัญหา แต่ผมได้แนบมันตั้งแต่มันดูเหมือนว่าฉันหายไปบางสิ่งบางอย่าง

@Override
public Dialog onCreateDialog(int id)
{
    Dialog dialog;
    Context appContext = this.getApplicationContext();
    switch(id)
    {
        case RENAME_DIALOG_ID:
            Log.i("Edit", "Creating rename dialog...");
            dialog = new Dialog(appContext);
            dialog.setContentView(R.layout.rename);
            dialog.setTitle("Rename " + noteName);
            break;
        default:
            dialog = null;
            break;
    }
    return dialog;      
}

มีอะไรหายไปจากนี้ไหม บางคำถามได้พูดคุยเกี่ยวกับปัญหานี้เมื่อสร้างไดอะล็อกonCreateซึ่งเกิดขึ้นเนื่องจากกิจกรรมยังไม่ได้สร้าง แต่มาจากการโทรจากวัตถุเมนูและappContextตัวแปรดูเหมือนว่ามันจะถูกบรรจุในดีบักเกอร์อย่างถูกต้อง

คำตอบ:


609

แทนที่จะเป็น: Context appContext = this.getApplicationContext(); คุณควรใช้ตัวชี้ไปยังกิจกรรมที่คุณอยู่ (อาจthis)

วันนี้ฉันถูกกัดด้วยเช่นกันส่วนที่น่ารำคาญก็getApplicationContext()คือคำต่อคำจาก developer.android.com :(


2
นอกจากนี้ยังมีรายงานว่าเป็นข้อผิดพลาด (แม้ว่าจะไม่ใช่ตอนที่ผู้ใช้โพสต์คำถาม): code.google.com/p/android/issues/detail?id=11199
Raymond Martineau

63
ในกรณีนี้จะช่วยให้ทุกคน - ใช้ myActivity.this เป็นบริบทของคุณในกล่องโต้ตอบ
Rab Ross

13
คำถามและคำตอบนี้มีอายุ 3 ปีใน 2 วัน ฉันยังคงได้รับชื่อเสียงดังนั้นฉันเดา Google ยังคงไม่ได้รับการแก้ไขเอกสารของพวกเขา ...
Torp

2
นี้ได้รับการแก้ไขใน ( developer.android.com/guide/topics/ui/dialogs.html )
มาร์ติน Marconcini

6
นี่คือเมษายนของปี 2016 และยังคงเป็นข้อยกเว้นนี้ทำให้แอปพลิเคชันหยุดทำงานเมื่อเริ่มต้นการโต้ตอบ
Yogesh Seralia

78

คุณไม่สามารถแสดงหน้าต่างแอปพลิเคชัน / กล่องโต้ตอบผ่านบริบทที่ไม่ใช่กิจกรรม ลองส่งการอ้างอิงกิจกรรมที่ถูกต้อง


อย่างไร ฉันพยายามactivity.thisแล้วactivity.getBaseContext()แต่ก็ไม่มีประโยชน์ ความช่วยเหลือใด ๆ
Darpan

3
เข้าใจแล้ว ส่งชื่อกิจกรรมของคุณโดยตรง .thisไม่มี
Darpan

45

เหมือนกันกับสิ่ง getApplicationContext

เอกสารในเว็บไซต์ android บอกว่าจะใช้ แต่มันไม่ทำงาน ... grrrrr :-P

แค่ทำ:

dialog = new Dialog(this); 

"this"เป็นกิจกรรมของคุณซึ่งคุณจะเริ่มต้นการโต้ตอบ


43

เอกสาร Android แนะนำให้ใช้ getApplicationContext ();

แต่จะไม่ทำงานแทนการใช้กิจกรรมปัจจุบันของคุณในขณะที่สร้าง AlertDialog.Builder หรือ AlertDialog หรือ Dialog ...

Ex:

AlertDialog.Builder builder = new  AlertDialog.Builder(this);

หรือ

AlertDialog.Builder builder = new  AlertDialog.Builder((Your Activity).this);

สิ่งนี้ช่วยให้ฉันออกไปอย่างหนาแน่น ฉันพยายามสร้างกล่องโต้ตอบจากภายในกล่องโต้ตอบอื่นและเพิ่งมี "AlertDialog.Builder (นี่);" กำลังให้ข้อผิดพลาด ขอบคุณ!
EHarpham

(ActivityName.this) มีประโยชน์อย่างยิ่งเมื่อพยายามสร้างกล่องโต้ตอบภายในคลิกปุ่ม
RmK

ปัญหาของฉันคือฉันกำลังสร้าง ProgressDialog ภายใน AlertDialog ภายในอะแดปเตอร์ ... ฉันไม่สามารถใช้งานได้
Martin Erlic


13

ฉันมีปัญหาที่คล้ายกันซึ่งฉันมีชั้นเรียนอื่นเช่นนี้:

public class Something {
  MyActivity myActivity;

  public Something(MyActivity myActivity) {
    this.myActivity=myActivity;
  }

  public void someMethod() {
   .
   .
   AlertDialog.Builder builder = new AlertDialog.Builder(myActivity);
   .
   AlertDialog alert = builder.create();
   alert.show();
  }
}

ทำงานได้ดีเกือบตลอดเวลา แต่บางครั้งมันก็ล้มเหลวด้วยข้อผิดพลาดเดียวกัน จากนั้นฉันก็รู้ว่าในตัวMyActivityฉันมี ...

public class MyActivity extends Activity {
  public static Something something;

  public void someMethod() {
    if (something==null) {
      something=new Something(this);
    }
  }
}

เพราะฉันถือวัตถุในขณะstaticที่รหัสที่สองยังคงถือรุ่นต้นฉบับของวัตถุและยังคงอ้างอิงถึงต้นฉบับActivityซึ่งไม่มีอยู่จริง

ความผิดพลาดโง่ ๆ โดยเฉพาะอย่างยิ่งเมื่อฉันไม่จำเป็นต้องถือวัตถุstaticในตอนแรก ...


12

เพียงแค่เปลี่ยนเป็น

AlertDialog.Builder alert_Categoryitem = 
    new AlertDialog.Builder(YourActivity.this);

แทน

AlertDialog.Builder alert_Categoryitem = 
    new AlertDialog.Builder(getApplicationContext());

9

วิธีแก้ไขอื่นคือตั้งค่าประเภทหน้าต่างเป็นไดอะล็อกระบบ:

dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);

สิ่งนี้ต้องSYSTEM_ALERT_WINDOWได้รับอนุญาต:

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

ตามที่เอกสารระบุไว้:

แอปพลิเคชั่นน้อยมากที่ควรใช้การอนุญาตนี้ หน้าต่างเหล่านี้มีจุดประสงค์สำหรับการโต้ตอบของระบบกับผู้ใช้

นี่เป็นวิธีแก้ปัญหาที่คุณควรใช้เฉพาะเมื่อคุณต้องการไดอะล็อกที่ไม่ได้แนบกับกิจกรรม


ตอนนี้ไม่อนุญาตให้ตั้งค่าสถานะจาก API ระดับ 26 เนื่องจากช่วยให้นักพัฒนาเล่นกับหน้าต่างระบบซึ่งไม่ดีจากมุมมองของผู้ใช้
CopsOnRoad

4

อย่าใช้getApplicationContext()ในการประกาศ dialouge

ใช้thisหรือของคุณเสมอactivity.this


2

สำหรับกล่องโต้ตอบที่ซ้อนกันปัญหานี้เกิดขึ้นบ่อยมากมันทำงานเมื่อ

AlertDialog.Builder mDialogBuilder = new AlertDialog.Builder(MyActivity.this);

ถูกใช้แทน

mDialogBuilder = new AlertDialog.Builder(getApplicationContext);

ทางเลือกนี้


2

สิ่งนี้ได้ผลสำหรับฉัน -

new AlertDialog.Builder(MainActivity.this)
        .setMessage(Html.fromHtml("<b><i><u>Spread Knowledge Unto The Last</u></i></b>"))
        .setCancelable(false)
        .setPositiveButton("Dismiss",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                    }
                }).show();

ใช้

ActivityName.this

0

คุณสามารถทำได้

public class Example extends Activity {
    final Context context = this;
    final Dialog dialog = new Dialog(context);
}

สิ่งนี้ใช้ได้สำหรับฉัน !!


0

ตามที่กล่าวไว้คุณต้องมีกิจกรรมเป็นบริบทสำหรับกล่องโต้ตอบใช้ "YourActivity.this" สำหรับบริบทแบบคงที่หรือตรวจสอบที่นี่เพื่อดูวิธีการใช้ไดนามิกในเซฟโหมด


0

ลองรีเซ็ตdialogประเภทของหน้าต่างเป็น

WindowManager.LayoutParams.TYPE_SYSTEM_ALERT:
dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);

อย่าลืมใช้การอนุญาต android.permission.SYSTEM_ALERT_WINDOW


0
public class Splash extends Activity {

    Location location;
    LocationManager locationManager;
    LocationListener locationlistener;
    ImageView image_view;
    ublic static ProgressDialog progressdialog;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);
        progressdialog = new ProgressDialog(Splash.this);
           image_view.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                        locationManager.requestLocationUpdates("gps", 100000, 1, locationlistener);
                        Toast.makeText(getApplicationContext(), "Getting Location plz wait...", Toast.LENGTH_SHORT).show();

                            progressdialog.setMessage("getting Location");
                            progressdialog.show();
                            Intent intent = new Intent(Splash.this,Show_LatLng.class);
//                          }
        });
    }

ข้อความที่นี่: -
ใช้สิ่งนี้เพื่อรับactivityบริบทprogressdialog

 progressdialog = new ProgressDialog(Splash.this);

หรือ progressdialog = new ProgressDialog(this);

ใช้วิธีนี้ในการรับบริบทพลิเคชันสำหรับไม่ได้สำหรับBroadcastListener progressdialog

progressdialog = new ProgressDialog(getApplicationContext());
progressdialog = new ProgressDialog(getBaseContext());

0

วิธีที่ดีที่สุดและปลอดภัยที่สุดในการแสดง 'ProgressDialog' ใน AsyncTask การหลีกเลี่ยงปัญหาการรั่วไหลของหน่วยความจำคือการใช้ 'ตัวจัดการ' กับ Looper.main ()

    private ProgressDialog tProgressDialog;

จากนั้นใน 'onCreate'

    tProgressDialog = new ProgressDialog(this);
    tProgressDialog.setMessage(getString(R.string.loading));
    tProgressDialog.setIndeterminate(true);

ตอนนี้คุณทำกับส่วนการตั้งค่า ตอนนี้เรียก 'showProgress ()' และ 'hideProgress ()' ใน AsyncTask

    private void showProgress(){
        new Handler(Looper.getMainLooper()){
            @Override
            public void handleMessage(Message msg) {
                tProgressDialog.show();
            }
        }.sendEmptyMessage(1);
    }

    private void hideProgress(){
        new Handler(Looper.getMainLooper()){
            @Override
            public void handleMessage(Message msg) {
                tProgressDialog.dismiss();
            }
        }.sendEmptyMessage(1);
    }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.