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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
cssrain
September 02, 2014
Technology
0
72
PhoneGap实践
PhoneGap实践
cssrain
September 02, 2014
Tweet
Share
More Decks by cssrain
See All by cssrain
UED工作流程分享和交流
cssrain
1
450
解读HTML
cssrain
0
130
解读HTML5
cssrain
2
160
基础CSS(1)
cssrain
0
150
基础CSS(2)
cssrain
0
100
高效的CSS
cssrain
0
150
高级CSS—继承
cssrain
0
120
PhoneGap分享和交流
cssrain
0
90
Zen Coding.
cssrain
0
100
Other Decks in Technology
See All in Technology
Sansanでの認証基盤内製化と移行
sansantech
PRO
0
590
AWSの資格って役に立つの?
tk3fftk
2
370
The_Evolution_of_Bits_AI_SRE.pdf
nulabinc
PRO
0
240
TypeScript 7.0の現在地と備え方
uhyo
7
1.8k
【Λ(らむだ)】最近のアプデ情報 / RPALT20260318
lambda
0
100
AIエージェント、 社内展開の前に知っておきたいこと
oracle4engineer
PRO
2
160
生成AIで速度と品質を両立する、QAエンジニア・開発者連携のAI協調型テストプロセス
shota_kusaba
0
200
脳内メモリ、思ったより揮発性だった
koutorino
0
380
Postman v12 で変わる API開発ワークフロー (Postman v12 アップデート) / New API development workflow with Postman v12
yokawasa
0
140
Kubernetesにおける推論基盤
ry
1
420
楽しく学ぼう!ネットワーク入門
shotashiratori
1
480
NewSQL_ ストレージ分離と分散合意を用いたスケーラブルアーキテクチャ
hacomono
PRO
4
400
Featured
See All Featured
Data-driven link building: lessons from a $708K investment (BrightonSEO talk)
szymonslowik
1
980
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
60
43k
KATA
mclloyd
PRO
35
15k
Crafting Experiences
bethany
1
89
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
340
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
380
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Technical Leadership for Architectural Decision Making
baasie
3
300
Leo the Paperboy
mayatellez
4
1.5k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.4k
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