1、制作html5引导页面。
2、把做好的页面放入Android工程中assets文件夹下。
3、利用WebView加载asset文件夹下的html文件。
4、在引导页最后一页的按钮上捕捉点击事件,结束引导页,进入程序。
一般网站的引导页是:网页命名 index.html,Default.html,index.asp,Default.asp,index.php,Default.php
一般你输入域名就首先显示是这些页面,除非你指定某个页面,如下面这种方式
2.网站域名的指向这个页面就可以了 在域名或者空间管理里面设置就可以了
方法可以用模块去实现, 也可以用api自身的openFrameGroup来实现,api.openFrameGroup ({
name: 'group1',
background: '#fff',
scrollEnabled: true,//设置滚动
rect: {
x: 0,
y: 0,
w: 'auto',
h: 'auto'
},
index: 0,
frames: [{
name: 'guide1',
url: './html/guide1.html',
bgColor: './image/guide.png'//图片直接作为背景即可
},{
name: 'guide2',
url: './html/guide2.html',
bgColor: './image/guide.png'
}]
}, function(ret, err){
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
打开的guide1和guide2样式需要调一下:
html,
body {
height: 100%
background: rgba(0, 0, 0, 0)
}
1
2
3
4
5
可以在最后一页的body里添加一个按钮去开启应用。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)