标签:perm int 自定义 title file window actionbar mds set
设置
在AndroidManifest.xml设置访问网络权限: 可以访问网络
<uses-permission android:name="android.permission.INTERNET"/>
加载
webView = (WebView) findViewById(R.id.webView); webView.loadUrl(file:///android_asset/example.html); 访问资源文件
全屏
AndroidMaifest.xml
android:theme="@style/MDSTheme.fullscreen"> 自定义样式
<style name="MDSTheme.fullscreen" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
标签:perm int 自定义 title file window actionbar mds set
原文地址:http://www.cnblogs.com/zhuimengzhe/p/7434583.html