I am trying to create and Android IME that utilizes two joysticks as part of the input process. I found a group of open source widgets Here that have both a single and double joystick widget that are ideal for what I am trying to accomplish, however I'm having some trouble getting them to function in the IME framework.
Using the following XML and a blank main activity that just sets the layout to the below file:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#CCCCCC"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
>
<com.MobileAnarchy.Android.Widgets.Joystick.DualJoystickView
android:id="@+id/dualjoystickView"
android:layout_marginTop="5dip"
android:layout_width="fill_parent"
android:layout_height="175dip">
</com.MobileAnarchy.Android.Widgets.Joystick.DualJoystickView>
</LinearLayout>
Gives the following Application appearance with both joysticks functioning concurrently:

However, when I try to translate that code to the IME, using more or less the same code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/testing"
android:orientation="horizontal"
android:background="#CCCCCC"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.MobileAnarchy.Android.Widgets.Joystick.DualJoystickView
android:id="@+id/dualjoystickView"
android:layout_marginTop="5dip"
android:layout_width="fill_parent"
android:layout_height="175dip">
</com.MobileAnarchy.Android.Widgets.Joystick.DualJoystickView>
</LinearLayout>
And call it from the following function in my IME's code:
public View onCreateInputView() {
View v = (View)getLayoutInflater().inflate(R.layout.test, null);
mDisplay = (LinearLayout)v.findViewById(R.id.testing);
return mDisplay;
}
It displays the blank IME popup below:

However Im not sure if it's just an issue with the DualJoystickView class, because I can get two to show up using two single JoystickViews like below:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/testing"
android:orientation="horizontal"
android:background="#CCCCCC"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.MobileAnarchy.Android.Widgets.Joystick.JoystickView
android:id="@+id/joystickView1"
android:layout_marginTop="20dip"
android:layout_width="175dip"
android:layout_height="175dip" />
<com.MobileAnarchy.Android.Widgets.Joystick.JoystickView
android:id="@+id/joystickView2"
android:layout_marginTop="20dip"
android:layout_width="175dip"
android:layout_height="175dip" />
</LinearLayout>
and they pop up as intended, but the multitouch is not working as only one is usable at a time.

Im hoping this is some glaring oversight on my part rather than an issue with the joystick code so I can still utilize this code. If not, are there any other open source joystick samples anyone can provide that may remedy this problem?
Thanks in advance.