Adobe Air Android /阿拉伯语文本问题

时间:2016-10-13 05:48:25

标签: android ios actionscript-3 flash air

我正在使用Adobe Flash Air for IOS& Android问题现在是阿拉伯语RTL我不能写阿拉伯语。 我的

  

输入文字是经典不是" TLF文本"

TLF问题是键盘没有显示在android ..

Example

1 个答案:

答案 0 :(得分:0)

1)你有没有尝试做一些研究?我用Google搜索as3 "android" keyboard not showing 在上述链接的第一页结果中建议的解决方案有什么问题?

2)考虑使用Stage text,并且有关于它的介绍article

3)尝试类似下面的内容(未经测试)作为起点。由于没有显示,因此难以修复您的代码。

首先阅读此guide。可能有用。

var testInput : TextField = new TextField();
testInput.needsSoftKeyboard = true;
testInput.type = "input";
testInput.addEventListener(FocusEvent.FOCUS_IN, onFocusText);

stage.addChild(testInput);

function onFocusText( e:FocusEvent ):void
{
    testInput.requestSoftKeyboard();
}