2015年8月30日日曜日

UI Design

http://www.oracle.com/webfolder/ux/middleware/alta_icon_mobile_design_guide/navigation_icons-navigation_bar.html

http://www.oracle.com/webfolder/ux/mobile/component/button.html

http://bip-lab-adf.blogspot.jp/2013/10/different-shapes-of-button-in-oracle-adf.html

How to change ICON color:
http://www.iconworkshop.cn/xiazai.html

Android DDMS can not find device
1.>> adb nodaemon server
cannot bind 'tcp:5037'

>> netstat -ano
>> tasklist|findstr or taskkill /f /pid

2.>>netstat -a -n -o |findstr "5037"
输出结果:  
TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       5096  
TCP    127.0.0.1:5037         127.0.0.1:51577        ESTABLISHED     5096  
TCP    127.0.0.1:51577        127.0.0.1:5037         ESTABLISHED     43242. 
>>tasklist /v | findstr 5096
>>tadb.exe
>>taskkill /f -pid XXX

2015年8月16日日曜日

Push Notification Doc

Baidu Push Notification Service
http://push.baidu.com/doc/ios/api

Google Push Notification Service
https://docs.pushio.com/API_&_cURL_Information/Platform_Specific_Payloads/GCM_%28Google_Cloud_Messaging%29

Apple Push Notification Service
https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

APNS specific schema  
https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1

Invoking custom Javascript from AMX pages

https://blogs.oracle.com/mobile/entry/invoking_custom_javascript_from_an
Integrating Cordova Plugin with Oracle MAF - Android Calendar Plugin
https://blogs.oracle.com/mobile/entry/integrating_cordova_plugin_with_oracle

2015年8月3日月曜日

SQLite in Oracle MAF

Read more about SQLite in MAF here https://docs.oracle.com/middleware/mobile200/mobile/develop-oepe/oepe-maf-sqlite-db.htm
http://waslleysouza.com.br/en/2015/02/maf-2-0-using-local-database/

Use case
Follow topic show you a couple of things in this post.

1.Create a .db by using a .sql script (when your application starts).
2.How to manage the connection of your SQLite DB.
3.Security regarding the .db
4.Doing operations on your DB (SELECT, INSERT, DELETE and UPDATE)

http://adf4beginners.com/2013/03/adf-mobile-sqlite-in-adf-mobile/