我正在尝试创建一个弹出窗口。我在弹出窗口中包含了活动。活动上有tabhost。当我单独运行没有弹出的活动时,标签是可见的。但是当我在弹出窗口中添加相同内容时,选项卡是不可见的。我只能看到标签内的内容。
这是我调用弹出窗口的代码 -
public void createVideoEvent(View arg0) {
LayoutInflater layoutInflater
= (LayoutInflater) getBaseContext()
.getSystemService(LAYOUT_INFLATER_SERVICE);
View popupView = layoutInflater.inflate(R.layout.activity_event_create, null);
final PopupWindow popupWindow = new PopupWindow(
popupView,
LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT);
View new_event_button = (View) findViewById(R.id.button);
popupWindow.showAsDropDown(new_event_button);
}