I'm developing a PopUp window for Android, and it's working, I added a EditText and a Button on that, when running on ADV this work properly, while running on device, when I focus on the EditText this throws a weird Exception.

android.view.WindowManager$BadTokenException: Unable to add window - - token android.view.ViewRoot&48163b18 is not valid; is your active running?

I don't know if it matters, but I'm running on a Galaxy Tab with Swype input.

Now I read the specs of the Window.showAtLocation

public void showAtLocation (View parent, int gravity, int x, int y)

Display the content view in a popup window at the specified location. If the popup window cannot fit on screen, it will be clipped. [...]

Parameters
parent  a parent view to get the getWindowToken() token from
[...]

The problem is just in that token, but how do I pass the Activity token to it?

I also wrote a small code to reproduce the error.

PopupWindow window = new PopupWindow(activity);
window.setWidth(WindowManager.LayoutParams.WRAP_CONTENT);
window.setHeight(WindowManager.LayoutParams.WRAP_CONTENT);

window.setTouchable(true);
window.setFocusable(true);

EditText text = new EditText(activity);
text.setText("Dont touch, this crash!");

window.setContentView(text);
window.showAtLocation(arg0, Gravity.NO_GRAVITY, 10,10);

Running on AVD all works fine, while on device this crash and throw the error I mentioned.

I discover something new, when I'm in landscape mode this errors don't occurs.

link|improve this question

79% accept rate
This may be a total shot in the dark, but after researching this a little bit, it seems like this problem you're having could be caused by you using Activity.getApplicationContext as the context. This thread gives you a solution, if this is indeed your problem. groups.google.com/group/android-developers/browse_thread/thread/… – Banang Feb 9 '11 at 14:46
1  
I tried even with a lot of contexts (from the Button, from Activity, application) same error on all. – Marcos Vasconcelos Feb 10 '11 at 19:53
@Marcos Vasconcelos ,i have the same problem with you ,and it seems not the code ,but the device cause the crash. and i have tested some samsumg's android tab and phone ,most of them will crash. I want know weather you have solved this problem. or what should we do. – DiveInto Aug 29 '11 at 8:00
@Marcos, have you found a solution to your problem? I'm having a similar one (trying to add a submenu in a popup window menu), except it fails also on emulator... Can't find any solution anywhere, I'd be interested to know whether you solved it – Guillaume Dec 2 '11 at 0:23
feedback

3 Answers

I tried to run your code but everything works fine for me... Here is the test class I wrote :

public class TestActivity extends Activity
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button btn = (Button) findViewById(R.id.testBtn);
        btn.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v)
            {
                showPopup();
            }
        });
    }


    private void showPopup()
    {
        PopupWindow window = new PopupWindow(this);
        window.setWidth(WindowManager.LayoutParams.WRAP_CONTENT);
        window.setHeight(WindowManager.LayoutParams.WRAP_CONTENT);

        window.setTouchable(true);
        window.setFocusable(true);

        EditText text = new EditText(this);
        text.setText("Touch it, it doesn't crash");

        window.setContentView(text);
        window.showAtLocation(text, Gravity.NO_GRAVITY, 30, 30);
    }
}

main.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <Button
        android:id="@+id/testBtn"
        android:text="Popup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

Maybe you tried to run the popup code in the onCreate() function? If I do it, it throws the same Exception as yours, but it's normal since when onCreate() is called the activity is not fully initialized yet.

(I tried on a Galaxy Tab too, but without swype input)

link|improve this answer
Actually, I call that from an event, your code throws the same Exception, but ONLY on device, this is the weird part. Ty – Marcos Vasconcelos Feb 4 '11 at 17:25
That's strange, I don't understand... for me it works as well on the AVD as on my Galaxy Tab. – LadaRaider Feb 4 '11 at 17:35
Also works fine on my Galaxy S and HTC desire – LadaRaider Feb 4 '11 at 17:37
I tried again with your code, same error, even without Swype – Marcos Vasconcelos Feb 10 '11 at 19:52
I tested this code again, and in landscape mode it doens't crash. – Marcos Vasconcelos Feb 24 '11 at 21:37
feedback
EditText text = new EditText(activity);
text.setText("Dont touch, this crash!");

this actually is the cause of exception..

when we bind the EditText to some text it falls out on click when virtual keyboard appears..

But the same code works fine when we do not bind the EditText

EditText text = new EditText(activity);

Although I am facing the same error, and not able to sort out till now....

Just putting efforts here to focus on problem creater line...

Can any body suggest why itz behaving such and how to fix this issue..

Thankx

link|improve this answer
feedback

Edited

try like this create a new class say Popupcls

  public class PopUpFlag {
        private PopupWindow pw;

    public void initiatePopupWindow(Activity ctx) {
     LayoutInflater inflater = (LayoutInflater) ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View layout = inflater.inflate(R.layout.popupprofile,  (ViewGroup) ctx.findViewById(R.id.popup_element));
    EditText ettext = (EditText) layout.findViewById(R.id.edit);
    pw = new PopupWindow(layout, 300, 400, true);
    pw.showAtLocation(layout, Gravity.BOTTOM, 0, 0);
    }

Now in your activity if you need popup when popup button click write like this

popupbtn.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                PopUpFlag puf=new PopUpFlag();
                puf.initiatePopupWindow(YourActivityName.this);
            }
        });

I hope this helps

link|improve this answer
Actually, this line is outside my Activity class, but the activity is a reference to it. And I tried with a lot of Contexts – Marcos Vasconcelos Apr 29 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.