Android Java webview 加載本地html

方法一:
直接加載文件

final String filePath = "file:///android_asset/privacy_terms/privacy.html";
webView.loadUrl(filePath);
readTxtFile(getArguments().getString("fileName"));

方法二:
加載字符串

String fileContent = fileNamePrivacy = PrivacyDialogFragment.readTxtFile("privacy.html", this);
String contentTxt = fileContent;
        webView.getSettings().setDefaultTextEncodingName("utf-8");
        webView.loadDataWithBaseURL(null, contentTxt, "text/html", "utf-8", null);
public static String readTxtFile(String fileName, Context context) {
        try {
            InputStream is = context.getResources().getAssets().open("privacy_terms/" + fileName);
            int lenght = is.available();
            byte[]  buffer = new byte[lenght];
            is.read(buffer);
            String result = new String(buffer, "utf8");
            return result;
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }
    }

package com.chison.android.pu.View.Privacy;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Color;
import android.graphics.Rect;
import android.graphics.drawable.ColorDrawable;
import android.os.Build;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.DialogFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Button;
import android.widget.TextView;
import com.chison.android.pu.R;
import com.chison.android.pu.Utils.Helper.LanguageUtil;
import java.io.InputStream;
public class PrivacyDialogFragment extends DialogFragment {
private WebView webView;
private Button agreeButton;
private View rootView;
private String contentTxt;
private Handler handler;
private View.OnClickListener onItemClickListener;
public static PrivacyDialogFragment newInstance(String titleTxt, String btnTxt, String fileName) {
Bundle args = new Bundle();
args.putString("title",titleTxt);
args.putString("buttonTitle",btnTxt);
args.putString("fileName",fileName);
PrivacyDialogFragment fragment = new PrivacyDialogFragment();
fragment.setArguments(args);
return fragment;
}
// public static PrivacyDialogFragment newInstance(String titleTxt, String btnTxt, String filePath) {
// Bundle args = new Bundle();
// args.putString("title",titleTxt);
// args.putString("buttonTitle",btnTxt);
// args.putString("filePath",filePath);
// PrivacyDialogFragment fragment = new PrivacyDialogFragment();
// fragment.setArguments(args);
// return fragment;
// }
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(STYLE_NORMAL, R.style.Dialog_FullScreen);
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
Dialog dialog = getDialog();
if(dialog != null) {
Window window = dialog.getWindow();
if (window != null) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(Color.TRANSPARENT);
} else {
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
}
}
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
getDialog().setCanceledOnTouchOutside(false);
getDialog().requestWindowFeature(Window.FEATURE_NO_TITLE);
setCancelable(false);
if(rootView ==null){
rootView = inflater.inflate(R.layout.dialog_fragment_privacy, container,false);
}
webView = rootView.findViewById(R.id.webview_privacy);
agreeButton= rootView.findViewById(R.id.button_agree);
agreeButton.setText(getArguments().getString("buttonTitle"));
TextView titleTextView = rootView.findViewById(R.id.textview_header);
titleTextView.setText(getArguments().getString("title"));
if (onItemClickListener != null) {
//綁定監(jiān)聽事件
agreeButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dismiss();
onItemClickListener.onClick(v);
}
}
);
} else {
dismiss();
}
// final String filePath = getArguments().getString("filePath");
// webView.loadUrl(filePath);
// readTxtFile(getArguments().getString("fileName"));
webView.getSettings().setUseWideViewPort(true);//關(guān)鍵點
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN); //這個是國外網(wǎng)站Stack Overflow推薦提升加載速度的方式
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { // chromium, enable hardware acceleration
webView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
} else {
webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
webView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
webView.setBackgroundColor(0);
webView.getSettings().setBuiltInZoomControls(true);
webView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);
webView.setLayerType(View.LAYER_TYPE_SOFTWARE,null);
contentTxt = getArguments().getString("fileName");
webView.getSettings().setDefaultTextEncodingName("utf-8");
webView.loadDataWithBaseURL(null, contentTxt, "text/html", "utf-8", null);
rootView.setVisibility(View.INVISIBLE);
webView.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url)
{
super.onPageFinished(view, url);
// 加載完成
rootView.setVisibility(View.VISIBLE);
}
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon)
{
super.onPageStarted(view, url, favicon);
// 加載開始
}
});
return rootView;
}
/**
* 功能:Java讀取txt文件的內(nèi)容
* 步驟:1:先獲得文件句柄
* 2:獲得文件句柄當做是輸入一個字節(jié)碼流漩氨,需要對這個輸入流進行讀取
* 3:讀取到輸入流后烹卒,需要讀取生成字節(jié)流
* 4:一行一行的輸出赂乐。readline()痴柔。
* 備注:需要考慮的是異常情況
* @param fileName
*/
public static String readTxtFile(String fileName, Context context) {
try {
InputStream is = context.getResources().getAssets().open("privacy_terms/" + fileName);
int lenght = is.available();
byte[] buffer = new byte[lenght];
is.read(buffer);
String result = new String(buffer, "utf8");
return result;
} catch (Exception e) {
e.printStackTrace();
return "";
}
}
public int getContextRect() {
Activity activity = getActivity();
Rect rect = new Rect();
activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
return rect.height();
}
@Override
public void onStart() {
super.onStart();
Window window = getDialog().getWindow();
WindowManager.LayoutParams layoutParams = window.getAttributes();
window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
layoutParams.dimAmount = 0.2f;
window.setAttributes(layoutParams);
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
LanguageUtil.resetDefaultLanguage(context);
if (context instanceof View.OnClickListener) {
onItemClickListener = (View.OnClickListener) context;
} else {
}
}
}


?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末济榨,一起剝皮案震驚了整個濱河市寄纵,隨后出現(xiàn)的幾起案子绊谭,更是在濱河造成了極大的恐慌盾似,老刑警劉巖矛双,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件渊抽,死亡現(xiàn)場離奇詭異,居然都是意外死亡议忽,警方通過查閱死者的電腦和手機懒闷,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人愤估,你說我怎么就攤上這事帮辟。” “怎么了玩焰?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵由驹,是天一觀的道長。 經(jīng)常有香客問我昔园,道長蔓榄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任默刚,我火速辦了婚禮甥郑,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘荤西。我一直安慰自己澜搅,他們只是感情好,可當我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布邪锌。 她就那樣靜靜地躺著勉躺,像睡著了一般。 火紅的嫁衣襯著肌膚如雪秃流。 梳的紋絲不亂的頭發(fā)上赂蕴,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天,我揣著相機與錄音舶胀,去河邊找鬼概说。 笑死,一個胖子當著我的面吹牛嚣伐,可吹牛的內(nèi)容都是我干的糖赔。 我是一名探鬼主播,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼轩端,長吁一口氣:“原來是場噩夢啊……” “哼放典!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起基茵,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤奋构,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后拱层,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體弥臼,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年根灯,在試婚紗的時候發(fā)現(xiàn)自己被綠了径缅。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片掺栅。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖纳猪,靈堂內(nèi)的尸體忽然破棺而出氧卧,到底是詐尸還是另有隱情,我是刑警寧澤氏堤,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布沙绝,位于F島的核電站,受9級特大地震影響丽猬,放射性物質(zhì)發(fā)生泄漏宿饱。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一脚祟、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧强饮,春花似錦由桌、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至剪廉,卻和暖如春娃循,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背斗蒋。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工捌斧, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人泉沾。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓捞蚂,卻偏偏與公主長得像,于是被迫代替她去往敵國和親跷究。 傳聞我的和親對象是個殘疾皇子姓迅,可洞房花燭夜當晚...
    茶點故事閱讀 43,627評論 2 350