forked from hiediutley/HelloPhoneGap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativeControls.html
More file actions
147 lines (116 loc) · 5.3 KB
/
Copy pathnativeControls.html
File metadata and controls
147 lines (116 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Change this if you want to allow scaling -->
<meta name="viewport" content="width=default-width; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="HelloPhoneGap.css" type="text/css"/>
<title>HelloPhoneGap</title>
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.4.min.js"></script>
<script type="text/javascript" charset="utf-8" src="NativeControls.js"></script>
<script type="text/javascript" charset="utf-8">
var nativeControls;
var tabBarItems = new Array('More','Favorites','Search');
function onBodyLoad()
{
document.addEventListener("deviceready",onDeviceReady,false);
}
/* When this function is called, PhoneGap has been initialized and is ready to roll */
function onDeviceReady()
{
phoneGapReady.innerHTML = "PhoneGap is Ready";
nativeControls = window.plugins.nativeControls;
setupTabBar();
}
function showCameraOptions()
{
var buttons = ["Take Photo", "Choose From Library", "Cancel"];
var delegate = nativeControls.createActionSheet(buttons, null, 2, null);
delegate.onActionSheetDismissed = function(index)
{
if (index == 0)
{
navigator.camera.getPicture(onPhotoURISuccess, onFail, {quality:5,destinationType:1,sourceType:1,allowEdit:false});
}
else if (index == 1)
{
navigator.camera.getPicture(onPhotoURISuccess, onFail, {quality:5,destinationType:1,sourceType:0,allowEdit:false});
}
}
};
function getPhoto(index)
{
}
function setupTabBar()
{
nativeControls.createTabBar();
var i = 0;
for (i = 0; i < tabBarItems.length; i++)
{
setUpButton(tabBarItems[i]);
}
nativeControls.showTabBarItems('More', 'Search', 'Favorites');
}
function showTabBar()
{
var options = new Object();
options.position = 'bottom';
nativeControls.showTabBar(options);
}
function hideTabBar()
{
nativeControls.hideTabBar();
}
function setUpButton(name)
{
var options = new Object();
options.onSelect = function()
{
alert(name);
};
nativeControls.createTabBarItem(name, name, 'tabButton:'+name, options);
}
function onPhotoURISuccess(imageURI) {
var myImage = document.getElementById('myImage');
myImage.style.display = 'block';
myImage.src = imageURI;
}
function onFail(mesage) {
alert('Failed because: ' + message);
}
</script>
</head>
<body onload="onBodyLoad()">
<DIV class="phoneGapAPITitle">
<TABLE width="100%">
<TR>
<TD>
Native Controls Plugin
</TD>
<TD align="right"><a href="index.html">back</a>
</TD>
</TR>
</TABLE>
</DIV>
<DIV class="phoneGapAPI">
<TABLE>
<TR>
<TD>
<button onclick="showCameraOptions();">Display Photo</button> <br>
</TD>
</TR>
<TR>
<TD >
<img height=200 width=200 id="myImage" />
</TD>
</TR>
<TR>
<TD>
<button onclick="showTabBar();">showTabBar()</button><button onclick="hideTabBar();">hideTabBar()</button> <br>
</TD>
</TR>
</TABLE>
</DIV>
<DIV id="phoneGapReady" class="phoneGapReady">waiting for PhoneGap to initialize....</DIV>
</body>
</html>