複数の画像を選択して解析サーバーにアップロードするAndroidアプリケーションを作成しています。 Telegram Android Gallery pickerを使用して複数の画像を選択して実装しましたが、これをParseにアップロードすることはできますが、ビットマップにするとアプリが15分間凍結されるため、バックグラウンドでコードのその部分をno avail、空の配列を保存することになります。 私は、タスクがセーブの前に終わっていないか、または不適切に実行されていると仮定しています。すべての入力が歓迎されました!複数の画像をParse Serve Android Javaにバックグラウンドでアップロードする
ありがとうございました! は、ここでは、コードです:ここで
public class AddProductActivity extends AppCompatActivity implements View.OnClickListener {
private Bitmap bitmap;
private byte[] byteArray;
private List<String> photos;
private ArrayList<ParseFile> images;
private ImageButton imageButton;
private Future future;
private ExecutorService executorService;
@Override
public void onClick(View view) {
if (view.getId() == R.id.addImageBtn) {
GalleryConfig config = new GalleryConfig.Build()
.limitPickPhoto(8)
.singlePhoto(false)
.hintOfPick("Vous pouvez choisir un max de 8 photos.")
.filterMimeTypes(new String[]{"image/*"})
.build();
GalleryActivity.openActivity(AddProductActivity.this, 2, config);
}
}
public void publish(View view) {
EditText productName = (EditText) findViewById(R.id.productNameField);
EditText productDescription = (EditText) findViewById(R.id.productDescriptionField);
EditText productPrice = (EditText) findViewById(R.id.priceField);
if (productName.getText().toString().matches("")
|| productDescription.getText().toString().matches("")
|| productPrice.getText().toString().matches("")) {
Toast.makeText(this, "Tous les champs sont requis", Toast.LENGTH_SHORT).show();
} else {
if (byteArray == null) {
Toast.makeText(AddProductActivity.this, "Ajoutez des images de l'article!", Toast.LENGTH_SHORT).show();
} else {
ParseObject object = new ParseObject("Product");
object.put("name", productName.getText().toString());
object.put("description", productDescription.getText().toString());
object.put("price", productPrice.getText().toString());
object.put("city", ParseUser.getCurrentUser().get("City").toString());
object.put("username", ParseUser.getCurrentUser().getUsername());
object.addAll("productImages", images);
object.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException ex) {
if (ex == null) {
executorService.shutdown();
// Try uploading the ParseFiles using the save method before associating them with the Parse Object
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
startActivity(intent);
} else {
Toast.makeText(AddProductActivity.this, "Il y a eu un soucis, réessayer dans 5mins!", Toast.LENGTH_SHORT).show();
}
}
});
}
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
//async task
photos = (List<String>) data.getSerializableExtra(GalleryActivity.PHOTOS);
executorService = Executors.newSingleThreadExecutor();
future = executorService.submit(new Callable(){
public Object call() throws Exception {
images = new ArrayList<ParseFile>();
for (String photo : photos) {
bitmap = BitmapFactory.decodeFile(photo);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
byteArray = stream.toByteArray();
ParseFile file = new ParseFile("image.png", byteArray);
try {
file.save();
} catch (ParseException e) {
e.printStackTrace();
}
images.add(file);
Log.i("Size", String.valueOf(images.size()));
}
return images;
}
});
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_product);
imageButton = (ImageButton) findViewById(R.id.addImageBtn);
imageButton.setOnClickListener(this);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (checkSelfPermission(Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
requestPermissions(new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 2);
}
}
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// handle arrow click here
if (item.getItemId() == android.R.id.home) {
finish(); // close this activity and return to preview activity (if there is any)
}
return super.onOptionsItemSelected(item);
} }
は、XMLファイルが
<LinearLayout
android:id="@+id/activity_add_product"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.shopapp.AddProductActivity"
android:orientation="vertical"
android:weightSum="1">
<!-- our toolbar -->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<TextView
android:text="@string/addProductTextview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/addProductTextview"
android:textAlignment="center"
android:textSize="24sp"
android:textStyle="normal|bold"
android:textColor="?attr/actionModeSplitBackground" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:ems="10"
android:id="@+id/productNameField"
android:hint="@string/productNameField" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:ems="10"
android:id="@+id/productDescriptionField"
android:hint="@string/productDrescriptionField" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberDecimal"
android:ems="10"
android:id="@+id/priceField"
android:hint="@string/productPriceField" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@android:drawable/ic_menu_camera"
android:id="@+id/addImageBtn"
android:contentDescription="@string/addImageProductBtnDescription" />
<Button
android:text="@string/publishProductBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/publishProductBtn"
android:onClick="publish" />
あなたは1 –
ずつアップロードすることができ、それが遅れませんJethavaを@kishoreするには?画像ピッカーと公開ボタンが別々の場合、どうすればいいですか? 謝罪xmlファイルを追加しましょう – Ender
すべての 'ParseFile'で' ArrayList'が埋め込まれている場合、 'executorService.shutdown()'をシャットダウンしてください。 –