• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

disable full screen keyboard - easy

Explorer ,
Oct 21, 2015 Oct 21, 2015

Copy link to clipboard

Copied

I looked at the class "AndroidStageText.java" - classes.dex> com> adobe> air> AndroidStageText.java

Prevent the keyboard in full screen is very easy to just add:

public void setReturnKeyLabel (int i) {

....

+ this.setImeOptions (EditorInfo.IME_FLAG_NO_EXTRACT_UI);

...

}

I do not understand why adobe does not. It is losing a lot of time to many programmers! We are getting worse more and more .......

TOPICS
Performance issues

Views

285

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 21, 2015 Oct 21, 2015

Copy link to clipboard

Copied

LATEST

Better use: EditorInfo.IME_FLAG_NO_FULLSCREEN - Constant Value: 33554432

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines