Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
PhoneGap实践
Search
cssrain
September 02, 2014
Technology
0
59
PhoneGap实践
PhoneGap实践
cssrain
September 02, 2014
Tweet
Share
More Decks by cssrain
See All by cssrain
UED工作流程分享和交流
cssrain
1
390
解读HTML
cssrain
0
120
解读HTML5
cssrain
2
140
基础CSS(1)
cssrain
0
130
基础CSS(2)
cssrain
0
91
高效的CSS
cssrain
0
140
高级CSS—继承
cssrain
0
110
PhoneGap分享和交流
cssrain
0
84
Zen Coding.
cssrain
0
92
Other Decks in Technology
See All in Technology
Previewでもここまで追える! Azure AI Foundryで始めるLLMトレース
tomodo_ysys
2
670
dbtとリバースETLでデータ連携の複雑さに立ち向かう
morookacube
0
700
計測による継続的なCI/CDの改善
sansantech
PRO
1
460
LINE 購物幕後推手
line_developers_tw
PRO
0
450
技術選定を突き詰める 懇親会LT
okaru
1
340
Azure × MCP 入門
ry0y4n
8
1.7k
製造業向けIoTソリューション提案資料.pdf
haruki_uiru
0
250
さくらのクラウド開発の裏側
metakoma
PRO
4
1.6k
とあるEdTechベンチャーのシステム構成こだわりN選 / edtech-system
gotok365
4
290
テストコードにはテストの意図を込めよう(2025年版) #retechtalk / Put the intent of the test 2025
nihonbuson
PRO
6
1k
雑に疎通確認だけしたい...せや!CloudShell使ったろ!
alchemy1115
0
220
Vibe Coding Tools
ijin
0
210
Featured
See All Featured
Navigating Team Friction
lara
185
15k
The Pragmatic Product Professional
lauravandoore
33
6.6k
Building an army of robots
kneath
305
45k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.2k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
21k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
5
600
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.6k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Building Adaptive Systems
keathley
41
2.5k
How GitHub (no longer) Works
holman
314
140k
Transcript
UED分享 · 交流 http://cssrain.github.io
None
None
public class CirclesActivity extends DroidGap { @Override public void onCreate(Bundle
savedInstanceState) { super.onCreate(savedInstanceState); super.loadUrl("file:///android_asset/www/index.html "); } }
None
None
None
None
window.plugins.callsListing.list( function(r){printResult(r)}, function(e){console.log(e)} );
小结
window.plugins.callsListing.list( function(r){printResult(r)}, function(e){console.log(e)} ); CallsListing.prototype.list=function(successCallback ,failureCallback){ return PhoneGap.exec(successCallback, failureCallback, 'CallsHistoryPlugin',
'list',['test’]); };
None
None
None
CallsListing.prototype.list=function(successCallback,failureCallba ck){ return PhoneGap.exec(successCallback, failureCallback, 'CallsHistoryPlugin', 'list',['test’]); };
None
None
None
None