From f6ebac34baf99592f414a228490c2625a0fa8e37 Mon Sep 17 00:00:00 2001 From: Abhisek Devkota Date: Fri, 28 Aug 2015 17:43:17 -0700 Subject: Combine source & prebuilt to single project Todo: Makefile logic --- .../browser/preferences/LegalPreviewFragment.java | 83 ++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 src/src/com/android/browser/preferences/LegalPreviewFragment.java (limited to 'src/src/com/android/browser/preferences/LegalPreviewFragment.java') diff --git a/src/src/com/android/browser/preferences/LegalPreviewFragment.java b/src/src/com/android/browser/preferences/LegalPreviewFragment.java new file mode 100644 index 00000000..ec60e10c --- /dev/null +++ b/src/src/com/android/browser/preferences/LegalPreviewFragment.java @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2015 The Linux Foundation. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * * Neither the name of The Linux Foundation nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN + * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +package com.android.browser.preferences; + +import android.app.Fragment; +import android.os.Bundle; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.FrameLayout; + +import com.android.browser.R; + +import org.codeaurora.swe.WebView; + +public class LegalPreviewFragment extends Fragment { + + private WebView mWebView; + private String mUrl; + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + Bundle args = getArguments(); + mUrl = args.getString(LegalPreviewActivity.URL_INTENT_EXTRA); + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + ViewGroup contentContainer = (ViewGroup) inflater.inflate( + R.layout.webview_wrapper, container, false); + FrameLayout.LayoutParams params = new FrameLayout.LayoutParams( + FrameLayout.LayoutParams.MATCH_PARENT, + FrameLayout.LayoutParams.MATCH_PARENT); + mWebView = new WebView(getActivity()); + contentContainer.addView(mWebView.getView(), params); + return contentContainer; + } + + @Override + public void onActivityCreated(Bundle b) { + super.onActivityCreated(b); + if (mWebView == null) return; + mWebView.loadUrl(mUrl); + } + + public boolean onBackPressed() { + if(mWebView != null && mWebView.canGoBack()) { + mWebView.goBack(); + return true; + } + return false; + } +} -- cgit v1.2.3