|
@@ -17,7 +17,7 @@ import android.view.inputmethod.BaseInputConnection;
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
import android.view.inputmethod.InputConnection;
|
|
|
import android.view.inputmethod.InputMethodManager;
|
|
|
-import android.widget.AbsoluteLayout;
|
|
|
+import android.widget.RelativeLayout;
|
|
|
import android.widget.Button;
|
|
|
import android.widget.LinearLayout;
|
|
|
import android.widget.TextView;
|
|
@@ -171,7 +171,7 @@ public class SDLActivity extends Activity {
|
|
|
mJoystickHandler = new SDLJoystickHandler();
|
|
|
}
|
|
|
|
|
|
- mLayout = new AbsoluteLayout(this);
|
|
|
+ mLayout = new RelativeLayout(this);
|
|
|
mLayout.addView(mSurface);
|
|
|
|
|
|
setContentView(mLayout);
|
|
@@ -504,8 +504,9 @@ public class SDLActivity extends Activity {
|
|
|
|
|
|
@Override
|
|
|
public void run() {
|
|
|
- AbsoluteLayout.LayoutParams params = new AbsoluteLayout.LayoutParams(
|
|
|
- w, h + HEIGHT_PADDING, x, y);
|
|
|
+ RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(w, h + HEIGHT_PADDING);
|
|
|
+ params.leftMargin = x;
|
|
|
+ params.topMargin = y;
|
|
|
|
|
|
if (mTextEdit == null) {
|
|
|
mTextEdit = new DummyEdit(getContext());
|