-
EditText inputType type
android:inputType=”none” android:inputType=”text” (a;;) android:inputType=”textCapCharacters” android:inputType=”textCapWords” android:inputType=”textCapSentences” android:inputType=”textAutoCorrect” android:inputType=”textAutoComplete” android:inputType=”textMultiLine” android:inputType=”textImeMultiLine” android:inputType=”textNoSuggestions” android:inputType=”textUri” (web url ) android:inputType=”textEmailAddress” (email) android:inputType=”textEmailSubject” android:inputType=”textShortMessage” android:inputType=”textLongMessage” android:inputType=”textPersonName” android:inputType=”textPostalAddress” android:inputType=”textPassword” android:inputType=”textVisiblePassword” android:inputType=”textWebEditText” android:inputType=”textFilter” android:inputType=”textPhonetic” //數值類型 android:inputType=”number” (0~9) android:inputType=”numberSigned” android:inputType=”numberDecimal” android:inputType=”phone” (telphone) android:inputType=”datetime” android:inputType=”date” android:inputType=”time”
-
Raspberry Pi Advanced Projects
Raspberry Pi Advanced Projects book Author: Powen Ko price: $2.99 buy on iBook Store Book Description With the Feb 29,2012 birth of Raspberry Pi, the world was godsmacked that a computer the size of bsiness card could rival the power of a small desktop computer
-
Enterprise software
Enterprise software is also enterprise application software (EAS), that is designed fotr organization,businesses, schools, interest-based or governments. Enterprise software.
-
mobile device management
Mobile device management (MDM) is the administration of mobile devices, such as smartphones, tablets, laptops , desktop computers, tablet computers, ruggedized mobile computers, mobile printers, mobile POS devices, etc. MDM functionality can include over-the-air distribution of applications, data and configuration settings for all types of mobile devices. MDM tools are leveraged for both company-owned and […]
-
iOS Speak Japanese.
iOS Speak Japanese. You can set one of the bellow language: this is the list with the supported languages:
-
iFrogLab Bluetooth 4.0 BLE F-60 hardware
You can now utilize Bluetooth 4.0 Low Energy (BLE) technology easily in your project with our BLE F-60. BLEF-60 requires only a serial port for communication so it supports all major development platforms that have UART interface including Arduino, Raspberry Pi, Netduino, BeagleBone etc. In addition, making the BLE F-60 an ideal development/protoyping board for your […]
-
swift , NSTimer, call function every 1 second
[/php] class GameScene: SKScene { override func didMoveToView(view: SKView) { var timer = NSTimer() timer = NSTimer.scheduledTimerWithTimeInterval(1, target:self, selector: Selector(“updateCounter”), userInfo: nil, repeats: true) } func updateCounter() { print(“get it”) } } [/php] call function every 1 second