
Mobile Platform
文章平均质量分 62
magic_dreamer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ionic UI(4)ionic2 framework - basic and components and native
ionic UI(4)ionic2 framework - basic and components and nativeJust create a tutorial project with TypeScript> ionic start myionic2project2 tutorial --v2 --ts> ionic serveVisit the pageh...原创 2016-03-24 02:33:12 · 239 阅读 · 1 评论 -
Feel Android Studio(1)Install and Update Android Studio
Feel Android Studio(1)Install and Update Android Studio1. Prepare the Git environmentFirst of all, I need to deal with the fork problem on github.com>git config --list>git config --global remote...原创 2014-04-11 03:12:56 · 273 阅读 · 0 评论 -
Android Fire Project(1)Recall Env and Knowledge
Android Fire Project(1)Recall Env and Knowledge 1. Android SDK Standalone ToolDownload from here http://developer.android.com/sdk/installing/index.html?pkg=toolsThe file I get is android-sdk...原创 2015-02-11 12:28:12 · 118 阅读 · 0 评论 -
IOS7 App Development Essentials(2)iBeacon
IOS7 App Development Essentials(2)iBeacon1. Beacon IntroductionCLBeaconRSSI(Received Signal Strength Indication) [-93, -113]accuracy The accuracy of the proximity value, measured in meters from th...原创 2014-03-05 05:55:46 · 140 阅读 · 0 评论 -
IOS7 App Development Essentials(1) Persistent Store
IOS7 App Development Essentials(1) Persistent Store 1. Introduction Store Types and BehaviorsXML, atomic, SQLite, in-memory store.NSBinaryStoreType — build-in atomic store.The XML store is not availab...原创 2014-03-05 05:54:45 · 297 阅读 · 0 评论 -
Mobile Jquery(5)Update and Know about Express
Mobile Jquery(5)Update and Know about Express1. Check my environment>npm -version 1.3.23>grunt -versiongrunt-cli v0.1.11grunt v0.4.1>npm install>gruntBuild and release the Jquery mobile.&g...原创 2014-01-30 06:33:09 · 142 阅读 · 0 评论 -
Android Content Framework(1)Concept
Android Content Framework(1)ConceptSome Concept1, total customizedThe Main activity will open the local html index.html page with android WebView and WebViewClient, for exampleimport android.webkit.We...原创 2014-06-14 13:54:09 · 144 阅读 · 0 评论 -
PhoneGap(1)Introduction and Installation
PhoneGap(1)Introduction and Installation1. Installation> sudo npm install -g phonegap>phonegap -v 3.3.0-0.18.0Update the phone gap>sudo npm update -g phonegap2. Simply use PhoneGap>phonega...原创 2014-01-23 05:34:09 · 134 阅读 · 0 评论 -
GCM(5)Working with MAVEN and Android OS Upgrade 2.3.7
GCM(5)Working with MAVEN and Android OS Upgrade 2.3.7The latest GCM API is working fine with Android Studio and gradle. I love it. But I still need to figure out how to working and build with my old m...原创 2014-01-10 04:30:16 · 191 阅读 · 0 评论 -
GCM(4)GoogleCloudMessaging
GCM(4)GoogleCloudMessaging1. Reading the documentsThe registration ID identifies the device and application, and also determines which 3rd-party application servers are allowed to send messages to thi...原创 2014-01-04 04:04:04 · 217 阅读 · 0 评论 -
GCM(2)GCM Demo Application
GCM(2)GCM Demo ApplicationThis demo consists of the following pieces:1. A web server containing a page where you can send messages2. An Android application that receives and displays such ...原创 2013-01-14 09:34:09 · 142 阅读 · 0 评论 -
GCM(1)Get Start
GCM(1)Get Start1. Getting StartedFollow the document to create Google APIs Console projectThe URL are as follow:https://code.google.com/apis/console/I click create project to create an API...原创 2013-01-14 09:27:22 · 159 阅读 · 0 评论 -
APNS(1)Apple Push Notification Service
APNS(1)Apple Push Notification ServiceAPNS is Apple Push Notification Service.A Push Notification and Its PathApple Push Notification service transports and routes a notification from a given ...原创 2013-01-14 06:03:44 · 186 阅读 · 0 评论 -
Hybrid(1)ionic Cordova meteor
Hybrid(1)ionic Cordova meteorAfter reading a lot of documents, cordova is similar to phoneGap. ionic is focus on mobile UI and based on cordova/phoneGap. Meteor seems provide both browser and hybr...原创 2015-06-25 05:49:35 · 176 阅读 · 0 评论 -
Screen Size and Web Design
Screen Size and Web DesigniPhone Display Size(inches)Diagonal measure of the screen, from corner to corner.iPhone Screen Size(points)Designing for the web(using CSS or JavaScript). Retina ...原创 2015-07-11 01:11:31 · 257 阅读 · 0 评论 -
ionic UI(3)TypeScript - handbook
ionic UI(3)TypeScript - handbook1 Basic Typesboolean - var isDone :boolean = false;number - var height: number = 6;string - var name:string = ‘carl’; name = “sillycat”;Array ...原创 2016-03-22 23:21:28 · 117 阅读 · 0 评论 -
ionic UI(2)ionic2 framework - TypeScript - tutorial
ionic UI(2)ionic2 framework - TypeScript - tutorial1 Basic ENV> node --versionv4.4.0> npm install -g cordova> npm install -g ionic>npm install -g ios-sim> npm install -g ios-depl...原创 2016-03-22 06:52:59 · 141 阅读 · 0 评论 -
Parse and Heroku Service(3)Parse Server and Parse Dashboard
Parse and Heroku Service(3)Parse Server and Parse Dashboard1 Set Up ENVEasiest way to start> npm install -g parse-server> npm install -g mongodb-runner> parse-server --appId tester --m...原创 2016-03-22 06:30:59 · 138 阅读 · 0 评论 -
Parse and Heroku Service(2)Mail Templates and Push Notification
Parse and Heroku Service(2)Mail Templates and Push Notification1 Sample Project for Parse CloudParse Account Key> parse configure accountkeyenter to open the key generate page.The key ...原创 2016-03-22 02:45:36 · 219 阅读 · 0 评论 -
ionic UI(1)Introduction
ionic UI(1)Introduction1 InstallationMake Sure Installed nodeJS 4.x> node --versionv4.2.2> npm install -g cordova> npm install -g ionic> npm install -g ios-simCreate the applicat...原创 2016-03-19 03:18:16 · 116 阅读 · 0 评论 -
Parse and Heroku Service(1)Heroku Installation and Play
Parse and Heroic Service(1)Heroku Installation and Play1 Introduction Parse Servicea. JSON format data mapping to storageb. PFUser user managementc. iOS and Android push notificationd. Fil...原创 2016-03-19 00:13:55 · 192 阅读 · 0 评论 -
Hybrid(5)Customize Meteor Directly Google Login
Hybrid(5)Customize Meteor Directly Google Login1. First of All, Find a working Release on MeteorCurrently, the release version release-1.2 is working, so I branch from that release and create re...原创 2015-09-01 02:33:02 · 152 阅读 · 0 评论 -
Hybrid(4)Favorite Places - Google Login
Hybrid(4)Favorite Places - Google LoginRequirements:1. Google Login2. CRUD Places3. CRUD EventsCreate meteor in an existing directory.https://github.com/aldeed/meteorifyThen I can ...原创 2015-09-01 02:02:37 · 381 阅读 · 0 评论 -
Hybrid(3)More Meteor Example - Social
Hybrid(3)More Meteor Example - SocialFollowing the document from herehttp://angular-meteor.com/tutorials/angular1/bootstrapping1. BootstrappingCreate the project> meteor create socially...原创 2015-08-11 05:04:01 · 148 阅读 · 0 评论 -
Hybrid(2)meteor Running Android and iOS
Hybrid(2)meteor Running Android and iOS1. Build the AndroidRunning on an Android emulator> meteor install-sdk android✗ Android emulator acceleration is not installed (The Android emulat...原创 2015-07-28 23:59:36 · 227 阅读 · 0 评论 -
Create the Google Play Account
Create the Google Play AccountHaving a Google account, pay 25$, then you get your google developer account.References:http://developer.android.com/distribute/googleplay/start.htmlhttps://p...原创 2015-07-18 06:42:51 · 1942 阅读 · 0 评论 -
Secure REST API and Mobile(1)Document Read and Understand OAUTH2
Secure REST API and Mobile(1)Document Read and Understand OAUTH2I used to use OAuth1 before, but it seems that it is different from OAuth2.1. Introduction on OAuth2Resource Owner — UserCl...原创 2015-07-14 00:36:23 · 114 阅读 · 0 评论 -
Android Talker(3)Go on with the REST Sample with Real Device
Android Talker(3)Go on with the REST Sample with Real DeviceEclipse Error Message:Errors occurred during the build.Errors running builder 'Maven Project Builder' on product 'xxxxx'.jav...原创 2013-01-06 09:33:24 · 98 阅读 · 0 评论 -
How to Build APK and Install APK
How to Build APK and Install APKFirst thing, I upgrade my maven to the latest version, so I have problem to build the apk file.Error Message:[INFO] --- android-maven-plugin:3.6.0:generate-sources (def...原创 2013-11-06 05:22:29 · 176 阅读 · 0 评论 -
Android Talker(2)Project Environment
Android Talker(2)Project Environment1. Some tips about the eclipse and old projectError Message:org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.jayway.maven....原创 2012-12-06 23:53:50 · 137 阅读 · 0 评论 -
Android UI(1)Getting Started - First App and Manage Activities
Android UI(1)Getting Started - First App and Manage Activities1. Build Your First AppCreating an Android ProjectMinimum Required SDK - is the lowest version of Android that our app supports....原创 2013-03-19 05:19:18 · 139 阅读 · 0 评论 -
Android with Emulator Shell
Android with Emulator Shell1. Change the HOSTSFirst step, start my emulator.Then, remount the device image as writable>adb remountThen, save a copy of the hosts file on my own machine...原创 2013-03-16 06:05:39 · 285 阅读 · 0 评论 -
Jquery with REST
Jquery with RESTSome basic ideas:Maps CRUD calls$.Create ------> POST$.Read ------> GET$.Update ------->PUT$.Delete ------->DELETEall of these methods are based on the jQuery...原创 2011-07-21 10:46:37 · 155 阅读 · 0 评论 -
Mobile Jquery(IV)jquery mobile with ajax
Mobile Jquery(IV)jquery mobile with ajaxCSS and Script import$(function() { var serverURL = "http://192.168.1.58"; $("#AjaxTest").click(function() { var xmlHttp; ...原创 2011-07-21 10:46:01 · 121 阅读 · 0 评论 -
Mobile Jquery(III)jquery mobile with json
Mobile Jquery(III)jquery mobile with json1. Form validationDelete this entryvalidate JSfunction checkForm() { try { if ($.trim($('#person').val()) == "" || $.trim($('#contact'...原创 2011-07-21 10:45:06 · 172 阅读 · 0 评论 -
Mobile Jquery(II) Jquery mobile what can it do for you
Mobile Jquery(II) Jquery mobile what can it do for you1. transition type SpeakersThere are 6 types:slide Slide right to left (left to right if tapping the Back button). This i...原创 2011-07-21 10:44:23 · 122 阅读 · 0 评论 -
Mobile Jquery(I) Creating-a-website-using-jquery-mobile
Mobile Jquery(I) Creating-a-website-using-jquery-mobile1. Part One Manage my page layout2. Part Two manage the list View ...原创 2011-07-21 10:43:29 · 256 阅读 · 0 评论 -
Android Framework(II)Person Sample with restserver
Android Framework(II)Person Sample with restserver1. Base settingsI only use the spring rest template part, so my pom.xml will be like this: 4.0.0 com.sillycat.restclient restclient 1....原创 2011-05-30 23:52:07 · 240 阅读 · 0 评论 -
Android Framework(I)Android Spring Json
Android Framework(I)Android Spring Json1. Backgroud of Spring Android and JsonFirst, learn from spring.Spring Mobile project that provides extensions to Spring MVC for developing mobile web ap...原创 2011-05-30 23:50:38 · 254 阅读 · 0 评论 -
Android Introduce(I)concepts and NoteBook example
Android Introduce(I)concepts and NoteBook example1. Open Handset AllianceConsist of the system View----->lists, grids, text boxes, buttons, web browser Content Providers-----> acce...原创 2011-05-30 23:49:32 · 181 阅读 · 0 评论