Skip to content

Commit

Permalink
[droid] integrate native keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Montellese committed Jul 11, 2013
1 parent 29066ff commit 7d7f7be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xbmc/guilib/GUIKeyboardFactory.cpp
Expand Up @@ -32,6 +32,8 @@
#include "dialogs/GUIDialogKeyboardGeneric.h"
#if defined(TARGET_DARWIN_IOS)
#include "osx/ios/IOSKeyboard.h"
#elif defined(TARGET_ANDROID)
#include "android/activity/AndroidKeyboard.h"
#endif

FILTERING CGUIKeyboardFactory::m_filtering = FILTERING_NONE;
Expand Down Expand Up @@ -85,6 +87,8 @@ bool CGUIKeyboardFactory::ShowAndGetInput(CStdString& aTextString, const CVarian

#if defined(TARGET_DARWIN_IOS) && !defined(TARGET_DARWIN_IOS_ATV2)
kb = new CIOSKeyboard();
#elif defined(TARGET_ANDROID)
kb = new CAndroidKeyboard();
#endif

if(!kb)
Expand Down

0 comments on commit 7d7f7be

Please sign in to comment.