android 上传按钮,Android Studio上传按钮和提交按钮1

大家好我基本上在将2个按钮转换为1时遇到问题。 我有一个用于将图像上载到数据库的按钮,另一个用于将数据也上传到数据库。 这里是我的代码:Android Studio上传按钮和提交按钮1

public static final String UPLOAD_URL = "http://animotradings.000webhostapp.com/upload.php";

public static final String UPLOAD_KEY = "image";

//Categories Spinner

Spinner spinner;

ArrayAdapter adapter;

//Meet-up Spinner

Spinner spinner2;

ArrayAdapter adapter2;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_sell_activityy);

//PhotoUpload

buttonChoose = (Button) findViewById(R.id.buttonChoose);

buttonUpload = (Button) findViewById(R.id.buttonUpload);

imageView = (ImageView) findViewById(R.id.imageView);

buttonChoose.setOnClickListener(this);

buttonUpload.setOnClickListener(this);

// Categories Spinner

spinner = (Spinner)findViewById(sCategories);

adapter = ArrayAdapter.createFromResource(this, R.array.category_types, android.R.layout.simple_spinner_item);

adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

spinner.setAdapter(adapter);

spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

@Override

public void onItemSelected(AdapterView> parent, View view, int position, long id) {

Toast.makeText(getBaseContext(), parent.getItemAtPosition(position)+" selected", Toast.LENGTH_LONG).show();

}

@Override

public void onNothingSelected(AdapterView> parent) {

}

});

// Meet-up Spinner

spinner2 = (Spinner)findViewById(smeetup);

adapter2 = ArrayAdapter.createFromResource(this, R.array.meetup_location, android.R.layout.simple_spinner_item);

adapter2.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

spinner2.setAdapter(adapter2);

spinner2.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

@Override

public void onItemSelected(AdapterView> parent, View view, int position, long id) {

Toast.makeText(getBaseContext(), parent.getItemAtPosition(position)+" selected", Toast.LENGTH_LONG).show();

}

@Override

public void onNothingSelected(AdapterView> parent) {

}

});

final EditText etItemName = (EditText) findViewById(R.id.etItemName);

final EditText etCondition = (EditText) findViewById(R.id.etCondition);

final EditText etDescription = (EditText) findViewById(R.id.etDescription);

final EditText etPrice = (EditText) findViewById(R.id.etPrice);

final EditText etContact = (EditText) findViewById(R.id.etContact);

final Spinner sCategories = (Spinner) findViewById (R.id.sCategories);

final Spinner smeetup = (Spinner) findViewById (R.id.smeetup);

final Button bSubmit = (Button) findViewById(R.id.bSubmit);

bSubmit.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

final String item_name = etItemName.getText().toString();

final String conditionn = etCondition.getText().toString();

final String description = etDescription.getText().toString();

final int price = Integer.parseInt(etPrice.getText().toString());

final double contact = Double.parseDouble(etContact.getText().toString());

final String categories = sCategories.getSelectedItem().toString();

final String meetup = smeetup.getSelectedItem().toString();

// Data Upload...

Response.Listener responseListener= new Response.Listener(){

@Override

public void onResponse(String response) {

try {

JSONObject jsonResponse = new JSONObject(response);

boolean success = jsonResponse.getBoolean("success");

if (success){

Intent intent = new Intent(SellActivityy.this, NavigationDrawer.class);

SellActivityy.this.startActivity(intent);

} else{

AlertDialog.Builder builder = new AlertDialog.Builder(SellActivityy.this);

builder.setMessage("Ad posting failed!")

.setNegativeButton("Retry", null)

.create()

.show();

}

} catch (JSONException e) {

e.printStackTrace();

}

}

};

SellRequest sellRequest = new SellRequest(item_name, conditionn, description, price, contact, categories, meetup, responseListener);

RequestQueue queue = Volley.newRequestQueue(SellActivityy.this);

queue.add(sellRequest);

}

});

}

//PhotoUpload

private void showFileChooser() {

Intent intent = new Intent();

intent.setType("image/*");

intent.setAction(Intent.ACTION_GET_CONTENT);

startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_REQUEST);

}

private int PICK_IMAGE_REQUEST = 1;

private Button buttonChoose;

private Button buttonUpload;

private Button buttonView;

private ImageView imageView;

private Bitmap bitmap;

private Uri filePath;

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

super.onActivityResult(requestCode, resultCode, data);

if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK && data != null && data.getData() != null) {

filePath = data.getData();

try {

bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), filePath);

imageView.setImageBitmap(bitmap);

} catch (IOException e) {

e.printStackTrace();

}

}

}

public String getStringImage(Bitmap bmp){

ByteArrayOutputStream baos = new ByteArrayOutputStream();

bmp.compress(Bitmap.CompressFormat.JPEG, 100, baos);

byte[] imageBytes = baos.toByteArray();

String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);

return encodedImage;

}

private void uploadImage(){

// Picture Upload...

class UploadImage extends AsyncTask {

ProgressDialog loading;

RequestHandler rh = new RequestHandler();

@Override

protected void onPreExecute() {

super.onPreExecute();

loading = ProgressDialog.show(SellActivityy.this, "Uploading...", null,true,true);

}

@Override

protected void onPostExecute(String s) {

super.onPostExecute(s);

loading.dismiss();

Toast.makeText(getApplicationContext(),s,Toast.LENGTH_LONG).show();

}

@Override

protected String doInBackground(Bitmap... params) {

Bitmap bitmap = params[0];

String uploadImage = getStringImage(bitmap);

HashMap data = new HashMap<>();

data.put(UPLOAD_KEY, uploadImage);

String result = rh.sendPostRequest(UPLOAD_URL,data);

return result;

}

}

UploadImage ui = new UploadImage();

ui.execute(bitmap);

}

@Override

public void onClick(View v) {

if (v == buttonChoose) {

showFileChooser();

}

if(v == buttonUpload){

uploadImage();

}

private void viewImage() {

startActivity(new Intent(this, ImageListView.class)); }}

我试图转移内部bsubmit.onclicklistener代码,还试图改变的提交和上传按钮的代码,但至今没有成功。 对不起noob问题的家伙,我实际上是Android Studio的新手,并且无法适应。 我会继续尝试不同的代码,也许从头开始,但如果你们能帮助我,那会很棒。谢谢:d

+0

您面临的问题是什么? –

+0

无法找出您的问题或您的要求 –

+0

基本上,我有2个按钮,一个用于上传图片,另一个用于数据上传到数据库。 我试图将2个按钮转换为1,这样当我点击按钮时,我将能够同时上传图片和数据在数据库中。 –

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值