setTitle("MMS Demo");
_addressField =
new EditField("Destination:", "", MAX_PHONE_NUMBER_LENGTH,
BasicEditField.FILTER_PHONE);
add(_addressField);
add(new SeparatorField());
_subjectField = new EditField("Subject:", "");
add(_subjectField);
_messageField = new EditField("Message:", "");
add(_messageField);
add(new SeparatorField());
final LabelField attachmentText = new LabelField("Attachments");
add(attachmentText);
// Create table components
_view = new TableView(_app.getMessageParts());