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
67
PhoneGap实践
PhoneGap实践
cssrain
September 02, 2014
Tweet
Share
More Decks by cssrain
See All by cssrain
UED工作流程分享和交流
cssrain
1
430
解读HTML
cssrain
0
130
解读HTML5
cssrain
2
150
基础CSS(1)
cssrain
0
130
基础CSS(2)
cssrain
0
96
高效的CSS
cssrain
0
150
高级CSS—继承
cssrain
0
110
PhoneGap分享和交流
cssrain
0
85
Zen Coding.
cssrain
0
95
Other Decks in Technology
See All in Technology
データエンジニアがこの先生きのこるには...?
10xinc
0
410
業務自動化プラットフォーム Google Agentspace に入門してみる #devio2025
maroon1st
0
170
バイブコーディングと継続的デプロイメント
nwiizo
2
360
5年間のFintech × Rails実践に学ぶ - 基本に忠実な運用で築く高信頼性システム / 5 Years Fintech Rails Retrospective
ohbarye
9
3.6k
What is BigQuery?
aizack_harks
0
120
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
9k
入門 FormObject / An Introduction to FormObject #kaigionrails
expajp
2
1.6k
#普通の文系サラリーマンチャレンジ 自分でアプリ開発と電子工作を続けたら人生が変わった
tatsuya1970
0
840
Railsアプリケーション開発者のためのブックガイド
takahashim
13
5.3k
PLaMo2シリーズのvLLM実装 / PFN LLM セミナー
pfn
PRO
2
830
Pure Goで体験するWasmの未来
askua
1
160
Goを使ってTDDを体験しよう!
chiroruxx
1
240
Featured
See All Featured
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Producing Creativity
orderedlist
PRO
347
40k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
A designer walks into a library…
pauljervisheath
208
24k
Building Adaptive Systems
keathley
43
2.8k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
32
2.2k
Rails Girls Zürich Keynote
gr2m
95
14k
Facilitating Awesome Meetings
lara
56
6.6k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Statistics for Hackers
jakevdp
799
220k
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