1

我正在开发一个应用程序,因为我为日历视图创建了一个类。现在我想将日历活动作为弹出窗口打开,我实际上不知道如何创建弹出窗口,所以我用谷歌搜索并获得了以下代码,但该代码仅打开日历类的 ui。那么有人能告诉我我该怎么做吗?

b.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                LayoutInflater layoutInflater 
                 = (LayoutInflater)getBaseContext()
                  .getSystemService(LAYOUT_INFLATER_SERVICE);  
                View popupView = layoutInflater.inflate(R.layout.my_calendar_view, null);  
                         final PopupWindow popupWindow = new PopupWindow(
                           popupView, 
                           android.view.ViewGroup.LayoutParams.WRAP_CONTENT,  
                                 android.view.ViewGroup.LayoutParams.WRAP_CONTENT);
                         popupWindow.setWidth(200);
                         popupWindow.setHeight(500);
                        popupWindow.showAsDropDown(b, 500, 30);
            }
        });
    }
4

1 回答 1

2

android:theme="@android:style/Theme.Dialog

在您的清单文件中,在您的类名的活动块中添加上述语句

于 2013-10-26T12:26:24.560 回答