Lines Matching refs:container
342 View container = tab.getViewContainer(); in attachTabToContentView() local
347 (FrameLayout) container.findViewById(R.id.webview_wrapper); in attachTabToContentView()
355 parent = (ViewGroup) container.getParent(); in attachTabToContentView()
358 parent.removeView(container); in attachTabToContentView()
360 mContentView.addView(container, COVER_SCREEN_PARAMS); in attachTabToContentView()
369 View container = tab.getViewContainer(); in removeTabFromContentView() local
377 (FrameLayout) container.findViewById(R.id.webview_wrapper); in removeTabFromContentView()
379 mContentView.removeView(container); in removeTabFromContentView()
390 View container = tab.getViewContainer(); in onSetWebView() local
391 if (container == null) { in onSetWebView()
394 container = mActivity.getLayoutInflater().inflate(R.layout.tab, in onSetWebView()
396 tab.setViewContainer(container); in onSetWebView()
401 (FrameLayout) container.findViewById(R.id.webview_wrapper); in onSetWebView()
447 public void attachSubWindow(View container) { in attachSubWindow() argument
448 if (container.getParent() != null) { in attachSubWindow()
450 ((ViewGroup) container.getParent()).removeView(container); in attachSubWindow()
452 mContentView.addView(container, COVER_SCREEN_PARAMS); in attachSubWindow()