Fixed a crash in the task rabbit activity introduced by the control set refactor

pull/14/head
Sam Bosley 13 years ago
parent 2a60b7a3de
commit 1786ee5fa0

@ -45,13 +45,9 @@ public class TaskRabbitNameControlSet extends PopupControlSet implements TaskRab
editText = (EditText) getView().findViewById(R.id.notes);
notesPreview = (TextView) getDisplayView().findViewById(R.id.display_row_edit);
notesBody = (LinearLayout) getDisplayView().findViewById(R.id.notes_body);
dialog.getWindow()
.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
displayText.setText(activity.getString(titleID));
editText.setMaxLines(Integer.MAX_VALUE);
pictureButton = (ImageButton) getDisplayView().findViewById(R.id.picture);
if (pictureButton != null) {
@ -75,6 +71,13 @@ public class TaskRabbitNameControlSet extends PopupControlSet implements TaskRab
}
@Override
protected void additionalDialogSetup() {
dialog.getWindow()
.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE
| WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
}
@Override
public void saveToDatabase(JSONObject json, String key) throws JSONException {
json.put(key, editText.getText().toString());

Loading…
Cancel
Save