How can I send a ImageView
to DB? I'm trying to declare it to connect to the WebService and send the data but I'm having this doubt, code follows:
// Tirar foto e aparecer numa ImageView chamada: ATESTADO
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Bitmap bitmap = (Bitmap) data.getExtras().get("data");
atestado.setImageBitmap(bitmap);
// Como devo inserir quando a pessoa apertar botão Enviar, a image esteja junto igual o Dia e Motivo ?
btnEnviar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String dia = dia_Atestado.getText().toString();
String motivo = motivo_Atestado.getText().toString();
// ONDE A IMAGEM DEVE FICA
}
});