|
|
@ -236,13 +236,15 @@ public class TagUpdatesActivity extends ListActivity {
|
|
|
|
updateDao.createNew(update);
|
|
|
|
updateDao.createNew(update);
|
|
|
|
|
|
|
|
|
|
|
|
final long updateId = update.getId();
|
|
|
|
final long updateId = update.getId();
|
|
|
|
|
|
|
|
final Bitmap tempPicture = picture;
|
|
|
|
new Thread() {
|
|
|
|
new Thread() {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
public void run() {
|
|
|
|
actFmSyncService.pushUpdate(updateId, picture);
|
|
|
|
actFmSyncService.pushUpdate(updateId, tempPicture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}.start();
|
|
|
|
}.start();
|
|
|
|
addCommentField.setText(""); //$NON-NLS-1$
|
|
|
|
addCommentField.setText(""); //$NON-NLS-1$
|
|
|
|
|
|
|
|
picture = null;
|
|
|
|
pictureButton.setImageResource(R.drawable.icn_camera);
|
|
|
|
pictureButton.setImageResource(R.drawable.icn_camera);
|
|
|
|
refreshUpdatesList();
|
|
|
|
refreshUpdatesList();
|
|
|
|
|
|
|
|
|
|
|
|