2012-08-23 92 views
2

在as3中,是否可以強制數字小鍵盤輸入顯示在文本字段而不是標準鍵盤上?AIR Android強制數字文本輸入

我有一個文本框,用戶將輸入一個價格,這將是一個更好的用戶體驗。我知道我可以限制文本字段的輸入,但會希望實際的數字鍵盤出現。

回答

1

首先,請參閱以下文檔。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StageText.html#StageText%28%29

http://blogs.adobe.com/cantrell/archives/2011/09/native-text-input-with-stagetext.html

,並且是指一個下面的代碼。

import flash.display.Sprite; 
import flash.display.StageAlign; 
import flash.display.StageScaleMode; 
import flash.geom.Rectangle; 
import flash.text.ReturnKeyLabel; 
import flash.text.SoftKeyboardType; 
import flash.text.StageText; 


var text:StageText = new StageText(); 
text.softKeyboardType = SoftKeyboardType.NUMBER; 
text.restrict = "0-9"; 
text.returnKeyLabel = ReturnKeyLabel.GO; 

text.stage = this.stage; 
text.viewPort = new Rectangle(10, 10, 300, 40); 
+0

很好,這就是我一直在尋找的! – rohanlatimer