當前位置: 首頁>>代碼示例>>Java>>正文


Java WebView.getParent方法代碼示例

本文整理匯總了Java中android.webkit.WebView.getParent方法的典型用法代碼示例。如果您正苦於以下問題:Java WebView.getParent方法的具體用法?Java WebView.getParent怎麽用?Java WebView.getParent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.webkit.WebView的用法示例。


在下文中一共展示了WebView.getParent方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: clearWebView

import android.webkit.WebView; //導入方法依賴的package包/類
static final void clearWebView(WebView m) {

        if (m == null)
            return;
        if (Looper.myLooper() != Looper.getMainLooper())
            return;
        m.loadUrl("about:blank");
        m.stopLoading();
        if (m.getHandler() != null)
            m.getHandler().removeCallbacksAndMessages(null);
        m.removeAllViews();
        ViewGroup mViewGroup = null;
        if ((mViewGroup = ((ViewGroup) m.getParent())) != null)
            mViewGroup.removeView(m);
        m.setWebChromeClient(null);
        m.setWebViewClient(null);
        m.setTag(null);
        m.clearHistory();
        m.destroy();
        m = null;


    }
 
開發者ID:Justson,項目名稱:AgentWeb,代碼行數:24,代碼來源:AgentWebUtils.java

示例2: onCreateView

import android.webkit.WebView; //導入方法依賴的package包/類
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_player, container, false);

    WebView playerWebView = ((MainActivity)getActivity()).playerWebView;

    LinearLayout playerContainer = view.findViewById(R.id.player_container);

    if(playerWebView.getParent() != null)
        ((ViewGroup)playerWebView.getParent()).removeView(playerWebView);

    playerWebView.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));
    playerContainer.addView(playerWebView);

    LinearLayout chatContainer = view.findViewById(R.id.chat_container);
    if(PreferenceManager.getDefaultSharedPreferences(getContext()).getBoolean("enable_chat", true) && !getArguments().getBoolean("video")) {
        WebView chatWebView = ((MainActivity)getActivity()).chatWebView;

        if(chatWebView.getParent() != null)
            ((ViewGroup)chatWebView.getParent()).removeView(chatWebView);

        chatWebView.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));
        chatContainer.addView(chatWebView);
    } else {
        View infoView = inflater.inflate(R.layout.fragment_stream_info, container, false);

        infoView.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));
        chatContainer.addView(infoView);

        TextView titleText = chatContainer.findViewById(R.id.infoStreamTitle);
        titleText.setText(getArguments().getString("title"));
    }

    return view;
}
 
開發者ID:invghost,項目名稱:NeoStream,代碼行數:37,代碼來源:PlayerFragment.java

示例3: onDestroy

import android.webkit.WebView; //導入方法依賴的package包/類
/** Called when the activity is finally destroyed or in portrait-landscape switch. */
  @Override
  public void onDestroy()	{
// mhistoricalRecMgr.flush();	// shouldn't be done here because onDestroy is not called when switch to home screen and put smartmath background.

  	// release memory of wvOutput.
  	WebView wvOutput = (WebView) findViewById(R.id.webviewSmartMathOutput);
  	if (wvOutput != null)	{
	ViewGroup viewGroup = (ViewGroup) wvOutput.getParent();
	if (viewGroup != null)
	{
		viewGroup.removeView(wvOutput);
	}
	wvOutput.setFocusable(true);
	wvOutput.removeAllViews();
	wvOutput.clearHistory();
	wvOutput.destroy();
  	}
  	if (isFinishing())	{
  		MFPAdapter.clear();
  	}
  	try	{
  		super.onDestroy();
  	} catch(Exception e)	{
  		// have to add this for Amazon because at com.amazon.android.Kiwi.onDestroy(Unknown Source) it may throw exceptions.
  	}
  	if (isFinishing())	{
  		System.exit(0);	// clear memory so that if adView get problem, it can really restart.
  	}
  }
 
開發者ID:woshiwpa,項目名稱:SmartMath,代碼行數:31,代碼來源:ActivitySmartCalc.java


注:本文中的android.webkit.WebView.getParent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。