AriesHoo / FastLib

一个Android项目级快速开发框架,节约大部分写常用功能时间以实现更多项目业务功能及体验上的优化。使用说明见wiki

Home Page:https://github.com/AriesHoo/FastLib/wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FastWebActivity好像无法加载本地html文件

systemChina opened this issue · comments

if (!TextUtils.isEmpty(mUrl)) {
mUrl = mUrl.startsWith("http") ? mUrl : "http://" + mUrl;
getIntent().putExtra("url", mUrl);
}
是不是可以改一下

2.4.0微调了一下。。AgentWeb没有直接暴露loadData接口。
1、 mAgentWeb.getWebCreator().getWebView() 获取webView自己loadData
2、mAgentWeb.getUrlLoader().loadData();

以上两种操作均可解决问题