|
|
@ -137,10 +137,11 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm |
|
|
|
private EditText contentWarningEditor; |
|
|
|
private EditText contentWarningEditor; |
|
|
|
private TextView charactersLeft; |
|
|
|
private TextView charactersLeft; |
|
|
|
private Button floatingBtn; |
|
|
|
private Button floatingBtn; |
|
|
|
private ImageButton pickBtn; |
|
|
|
|
|
|
|
private ImageButton takeBtn; |
|
|
|
private ImageButton takeBtn; |
|
|
|
private ImageButton hideMediaToggle; |
|
|
|
private ImageButton pickBtn; |
|
|
|
private ImageButton visibilityBtn; |
|
|
|
private ImageButton visibilityBtn; |
|
|
|
|
|
|
|
private ImageButton saveButton; |
|
|
|
|
|
|
|
private ImageButton hideMediaToggle; |
|
|
|
private ProgressBar postProgress; |
|
|
|
private ProgressBar postProgress; |
|
|
|
// this only exists when a status is trying to be sent, but uploads are still occurring
|
|
|
|
// this only exists when a status is trying to be sent, but uploads are still occurring
|
|
|
|
private ProgressDialog finishingUploadDialog; |
|
|
|
private ProgressDialog finishingUploadDialog; |
|
|
@ -174,10 +175,11 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm |
|
|
|
contentWarningEditor = (EditText) findViewById(R.id.field_content_warning); |
|
|
|
contentWarningEditor = (EditText) findViewById(R.id.field_content_warning); |
|
|
|
charactersLeft = (TextView) findViewById(R.id.characters_left); |
|
|
|
charactersLeft = (TextView) findViewById(R.id.characters_left); |
|
|
|
floatingBtn = (Button) findViewById(R.id.floating_btn); |
|
|
|
floatingBtn = (Button) findViewById(R.id.floating_btn); |
|
|
|
pickBtn = (ImageButton) findViewById(R.id.compose_photo_pick); |
|
|
|
|
|
|
|
takeBtn = (ImageButton) findViewById(R.id.compose_photo_take); |
|
|
|
takeBtn = (ImageButton) findViewById(R.id.compose_photo_take); |
|
|
|
hideMediaToggle = (ImageButton) findViewById(R.id.action_hide_media); |
|
|
|
pickBtn = (ImageButton) findViewById(R.id.compose_photo_pick); |
|
|
|
visibilityBtn = (ImageButton) findViewById(R.id.action_toggle_visibility); |
|
|
|
visibilityBtn = (ImageButton) findViewById(R.id.action_toggle_visibility); |
|
|
|
|
|
|
|
saveButton = (ImageButton) findViewById(R.id.compose_save_draft); |
|
|
|
|
|
|
|
hideMediaToggle = (ImageButton) findViewById(R.id.action_hide_media); |
|
|
|
postProgress = (ProgressBar) findViewById(R.id.postProgress); |
|
|
|
postProgress = (ProgressBar) findViewById(R.id.postProgress); |
|
|
|
|
|
|
|
|
|
|
|
// Setup the toolbar.
|
|
|
|
// Setup the toolbar.
|
|
|
@ -203,22 +205,13 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm |
|
|
|
floatingBtn.setOnLongClickListener(new View.OnLongClickListener() { |
|
|
|
floatingBtn.setOnLongClickListener(new View.OnLongClickListener() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean onLongClick(View v) { |
|
|
|
public boolean onLongClick(View v) { |
|
|
|
String contentWarning = null; |
|
|
|
return saveDraft(); |
|
|
|
if (statusHideText) { |
|
|
|
} |
|
|
|
contentWarning = contentWarningEditor.getText().toString(); |
|
|
|
}); |
|
|
|
} |
|
|
|
takeBtn.setOnClickListener(new View.OnClickListener() { |
|
|
|
/* Discard any upload URLs embedded in the text because they'll be re-uploaded when |
|
|
|
@Override |
|
|
|
* the draft is loaded and replaced with new URLs. */ |
|
|
|
public void onClick(View v) { |
|
|
|
if (mediaQueued != null) { |
|
|
|
initiateCameraApp(); |
|
|
|
for (QueuedMedia item : mediaQueued) { |
|
|
|
|
|
|
|
removeUrlFromEditable(textEditor.getEditableText(), item.uploadUrl); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
boolean b = saveTheToot(textEditor.getText().toString(), contentWarning); |
|
|
|
|
|
|
|
if (b) { |
|
|
|
|
|
|
|
Toast.makeText(ComposeActivity.this, R.string.action_save_one_toot, Toast.LENGTH_SHORT).show(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return b; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
pickBtn.setOnClickListener(new View.OnClickListener() { |
|
|
|
pickBtn.setOnClickListener(new View.OnClickListener() { |
|
|
@ -227,22 +220,22 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm |
|
|
|
onMediaPick(); |
|
|
|
onMediaPick(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
takeBtn.setOnClickListener(new View.OnClickListener() { |
|
|
|
visibilityBtn.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void onClick(View v) { |
|
|
|
public void onClick(View v) { |
|
|
|
initiateCameraApp(); |
|
|
|
showComposeOptions(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
hideMediaToggle.setOnClickListener(new View.OnClickListener() { |
|
|
|
saveButton.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void onClick(View v) { |
|
|
|
public void onClick(View v) { |
|
|
|
toggleHideMedia(); |
|
|
|
saveDraft(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
visibilityBtn.setOnClickListener(new View.OnClickListener() { |
|
|
|
hideMediaToggle.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void onClick(View v) { |
|
|
|
public void onClick(View v) { |
|
|
|
showComposeOptions(); |
|
|
|
toggleHideMedia(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -534,21 +527,43 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void disableButtons() { |
|
|
|
private void disableButtons() { |
|
|
|
pickBtn.setClickable(false); |
|
|
|
|
|
|
|
takeBtn.setClickable(false); |
|
|
|
takeBtn.setClickable(false); |
|
|
|
hideMediaToggle.setClickable(false); |
|
|
|
pickBtn.setClickable(false); |
|
|
|
visibilityBtn.setClickable(false); |
|
|
|
visibilityBtn.setClickable(false); |
|
|
|
|
|
|
|
saveButton.setClickable(false); |
|
|
|
|
|
|
|
hideMediaToggle.setClickable(false); |
|
|
|
floatingBtn.setEnabled(false); |
|
|
|
floatingBtn.setEnabled(false); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void enableButtons() { |
|
|
|
private void enableButtons() { |
|
|
|
pickBtn.setClickable(true); |
|
|
|
|
|
|
|
takeBtn.setClickable(true); |
|
|
|
takeBtn.setClickable(true); |
|
|
|
hideMediaToggle.setClickable(true); |
|
|
|
pickBtn.setClickable(true); |
|
|
|
visibilityBtn.setClickable(true); |
|
|
|
visibilityBtn.setClickable(true); |
|
|
|
|
|
|
|
saveButton.setClickable(true); |
|
|
|
|
|
|
|
hideMediaToggle.setClickable(true); |
|
|
|
floatingBtn.setEnabled(true); |
|
|
|
floatingBtn.setEnabled(true); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private boolean saveDraft() { |
|
|
|
|
|
|
|
String contentWarning = null; |
|
|
|
|
|
|
|
if (statusHideText) { |
|
|
|
|
|
|
|
contentWarning = contentWarningEditor.getText().toString(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/* Discard any upload URLs embedded in the text because they'll be re-uploaded when |
|
|
|
|
|
|
|
* the draft is loaded and replaced with new URLs. */ |
|
|
|
|
|
|
|
if (mediaQueued != null) { |
|
|
|
|
|
|
|
for (QueuedMedia item : mediaQueued) { |
|
|
|
|
|
|
|
removeUrlFromEditable(textEditor.getEditableText(), item.uploadUrl); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
boolean b = saveTheToot(textEditor.getText().toString(), contentWarning); |
|
|
|
|
|
|
|
if (b) { |
|
|
|
|
|
|
|
Toast.makeText(ComposeActivity.this, R.string.action_save_one_toot, Toast.LENGTH_SHORT) |
|
|
|
|
|
|
|
.show(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return b; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static boolean copyToFile(ContentResolver contentResolver, Uri uri, File file) { |
|
|
|
private static boolean copyToFile(ContentResolver contentResolver, Uri uri, File file) { |
|
|
|
InputStream from; |
|
|
|
InputStream from; |
|
|
|
FileOutputStream to; |
|
|
|
FileOutputStream to; |
|
|
|