Fix issue causing the textedit to move upward
This commit is contained in:
parent
5a3096a1cd
commit
a8240f7351
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<dimen name="text_edit_height">48dp</dimen>
|
||||
</resources>
|
|
@ -160,8 +160,7 @@ public abstract class Godot extends FragmentActivity implements SensorEventListe
|
|||
|
||||
private void setButtonPausedState(boolean paused) {
|
||||
mStatePaused = paused;
|
||||
int stringResourceID = paused ? R.string.text_button_resume :
|
||||
R.string.text_button_pause;
|
||||
int stringResourceID = paused ? R.string.text_button_resume : R.string.text_button_pause;
|
||||
mPauseButton.setText(stringResourceID);
|
||||
}
|
||||
|
||||
|
@ -318,7 +317,8 @@ public abstract class Godot extends FragmentActivity implements SensorEventListe
|
|||
|
||||
// GodotEditText layout
|
||||
GodotEditText edittext = new GodotEditText(this);
|
||||
edittext.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
|
||||
edittext.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.MATCH_PARENT,
|
||||
(int)getResources().getDimension(R.dimen.text_edit_height)));
|
||||
// ...add to FrameLayout
|
||||
layout.addView(edittext);
|
||||
|
||||
|
|
Loading…
Reference in New Issue