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 vto 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.
onClickevent right? Did you ever try theloginscreen()method on youronCreate()method or anywhere? – Praveen Jun 19 '12 at 5:07