Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am beginner in android.
I have successfully created one popup window. It's working fine using in the action(Button) event. But normally i am calling to the

onCreate()
method at that time how to i specify the
View v
to here
popupWindow.showAsDropDown( , 50, -30);

My code is here

loginScreen();

public void loginScreen()
{
    LayoutInflater layoutInflater  = (LayoutInflater)getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);  
    View popupView = layoutInflater.inflate(R.layout.login, null);
    final PopupWindow popupWindow = new PopupWindow( popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);                       
    imgViewCloseDialog = (ImageView)popupView.findViewById(R.id.loginDialogClose);
    imgViewCloseDialog.setOnClickListener(new Button.OnClickListener()
    {   
        @Override
        public void onClick(View v)
        {
            popupWindow.dismiss();
        }
    });
    //popupWindow.showAsDropDown(popupView, 50, -30);
        //Here popupView is a problem.
}

Please reply your answers are valuable me. Thanks.

share|improve this question
2  
without onClick Event means? your question is not clear – ρяσѕρєя K Jun 19 '12 at 4:59
You don't want to show your popup window withour onClick event right? Did you ever try the loginscreen() method on your onCreate() method or anywhere? – Praveen Jun 19 '12 at 5:07
How to start popup window automatically, when my activity is start.. – Bala Jun 19 '12 at 5:23

closed as not a real question by casperOne Jun 20 '12 at 12:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try to use the Popup Window method in onCreate().It will do the trick.. The popup window starts when ever your activity get started..

share|improve this answer
Thanks. Error occur at run time. In the error line is popupWindow.showAsDropDown(popupView, 50, -30); Here i mentioned the View is popupView. It's a problem now. – Bala Jun 20 '12 at 6:24

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