|
|
|
@ -87,7 +87,7 @@ public class ReplyFragment extends DialogFragment { |
|
|
|
|
private FloatLabelEditText nameView; |
|
|
|
|
private FloatLabelEditText emailView; |
|
|
|
|
private FloatLabelEditText subjectView; |
|
|
|
|
private FloatLabelEditText commentView; |
|
|
|
|
private EditText commentView; |
|
|
|
|
private EditText fileNameView; |
|
|
|
|
private LoadView imageViewContainer; |
|
|
|
|
private LoadView captchaContainer; |
|
|
|
@ -162,7 +162,7 @@ public class ReplyFragment extends DialogFragment { |
|
|
|
|
nameView.getEditText().setText(draft.name); |
|
|
|
|
emailView.getEditText().setText(draft.email); |
|
|
|
|
subjectView.getEditText().setText(draft.subject); |
|
|
|
|
commentView.getEditText().setText(draft.comment); |
|
|
|
|
commentView.setText(draft.comment); |
|
|
|
|
setFile(draft.fileName, draft.file); |
|
|
|
|
|
|
|
|
|
getCaptcha(); |
|
|
|
@ -214,7 +214,9 @@ public class ReplyFragment extends DialogFragment { |
|
|
|
|
nameView = (FloatLabelEditText) container.findViewById(R.id.reply_name); |
|
|
|
|
emailView = (FloatLabelEditText) container.findViewById(R.id.reply_email); |
|
|
|
|
subjectView = (FloatLabelEditText) container.findViewById(R.id.reply_subject); |
|
|
|
|
commentView = (FloatLabelEditText) container.findViewById(R.id.reply_comment); |
|
|
|
|
commentView = (EditText) container.findViewById(R.id.reply_comment); |
|
|
|
|
commentView.requestFocus(); |
|
|
|
|
|
|
|
|
|
imageViewContainer = (LoadView) container.findViewById(R.id.reply_image); |
|
|
|
|
responseContainer = (LoadView) container.findViewById(R.id.reply_response); |
|
|
|
|
captchaContainer = (LoadView) container.findViewById(R.id.reply_captcha_container); |
|
|
|
|