当前位置:Gxlcms > html代码 > androidstudio创建assets目录并且利用webView加载其html_html/css_WEB-ITnose

androidstudio创建assets目录并且利用webView加载其html_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:116人阅读

1、在Android Studio中添加assets目录,首先调整成project模式

在main的目录下新建一文件夹叫:assets 。 WebView\src\main\assets


在项目的WebView.iml中加入:



2、在利用webView加载html文件


	@Override	protected void onCreate(Bundle savedInstanceState) {		super.onCreate(savedInstanceState);		setContentView(R.layout.activity_main);		webView = (WebView) findViewById(R.id.webView);		webView.loadUrl("file:///android_asset/web.html");	}

人气教程排行