android - 将 Android 图像位图更新为 SQLite Blob

标签 android sqlite android-bitmap android-imagebutton

我试图找出我在编码或逻辑缺陷上出错的地方,我创建了一个食谱应用程序,它需要几个字符串和一个图像,所有数据都保存到数据库中,在主屏幕上我得到一个列表来自数据库的食谱。

主屏幕

Main Screen

添加/编辑屏幕

Add / Edit Screen

创建或添加新数据正在按预期工作,所有数据均已保存。问题是除了图像之外的所有内容都可以更新,一旦保存,任何第二次尝试似乎都不会影响图像,图像保持不变。

核心原理是向 View 设置数据(当用户启动 Activity onCreate 或恢复 Activity onResume 时)并从 View 中获取数据(当用户离开 onPause 和 onSaveInstanceState 以防发生更新时)

代码

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_add_edit);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                enableEdit();
                fab.hide();
            }
        });
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        recipeDAOImp = new RecipeDAOImp(this);
        recipeDAOImp.open();
        findViews();

        rowId = (savedInstanceState == null) ? null :
                (Long) savedInstanceState.getSerializable(RecipeDAOImp.KEY_ID);
        if (rowId == null) {
            Bundle extras = getIntent().getExtras();
            rowId = extras != null ? extras.getLong(RecipeDAOImp.KEY_ID)
                    : null;
        }
        populateData();
        disableEdit();
    }

    private void findViews() {
       // Finds Views and Set onClick to imageButton
    }


    private void disableEdit() {
        // Disable Views
    }

    private void enableEdit() {
        // Enables Views
    }

    private void populateData() {
        // If rowId is available then user is trying to Edit Recipe
        if (rowId != null) {
            setTitle("Edit Recipe");
            Recipe recipe = new Recipe(rowId);
            Cursor cursor = recipeDAOImp.getRecipe(recipe);
            startManagingCursor(cursor);
            title.setText(cursor.getString(
                    cursor.getColumnIndexOrThrow(RecipeDAOImp.KEY_TITLE)));
            ingredients.setText(cursor.getString(
                    cursor.getColumnIndexOrThrow(RecipeDAOImp.KEY_INGREDIENTS)));

            steps.setText(cursor.getString(
                    cursor.getColumnIndexOrThrow(RecipeDAOImp.KEY_STEPS)));

            category.setText(cursor.getString(
                    cursor.getColumnIndexOrThrow(RecipeDAOImp.KEY_CATEGORY)));

            BitmapDrawable bitmapDrawable = new BitmapDrawable(getResources(), DbBitmapUtility.getImage(cursor.getBlob(
                    cursor.getColumnIndexOrThrow(RecipeDAOImp.KEY_IMAGE))));
            image.setBackground(bitmapDrawable);
        // Else user is Adding a new Recipe
        } else {
            fab.hide();
            setTitle("Add Recipe");
            enableEdit();
        }
    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        saveState();
        outState.putSerializable(RecipeDAOImp.KEY_ID, rowId);
    }

    @Override
    protected void onPause() {
        super.onPause();
        saveState();
    }

    @Override
    protected void onResume() {
        super.onResume();
        populateData();
    }

    private void saveState() {
        // Get the values from the views
        String titleString = title.getText().toString();
        String ingredientString = ingredients.getText().toString();
        String stepsString = steps.getText().toString();
        String categoryString = category.getText().toString();
        // Get the image from imageButton
        Drawable drawable = image.getBackground();
        Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();
        byte[] imageData = DbBitmapUtility.getBytes(bitmap);
        // Just to clarify image is never null as the backround is a camre image
        if (titleString.equals(null) || "".equals(titleString) || ingredientString.equals(null) || "".equals(ingredientString) || stepsString.equals(null) || "".equals(stepsString) || categoryString.equals(null) || "".equals(categoryString) || imageData.equals(null) || "".equals(imageData)) {
            Toast.makeText(this, "No Data Saved", Toast.LENGTH_SHORT).show();
        } else {
            Recipe recipe = new Recipe(titleString, ingredientString, stepsString, categoryString, imageData);
            // If rowId is not Available then user is Creating a new Recipe
            if (rowId == null) {
                long id = recipeDAOImp.createRecipe(recipe);
                if (id > 0) {
                    rowId = id;
                }
            } else {
                recipe.setId(rowId);
                recipeDAOImp.updateRecipe(recipe);
            }
        }
    }

    @Override
    public void onClick(View view) {
        Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
            startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
        }
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
            Bundle extras = data.getExtras();
            Bitmap imageBitmap = (Bitmap) extras.get("data");
            // Set the imageButton
            BitmapDrawable bitmapDrawable = new BitmapDrawable(getResources(), imageBitmap);
            image.setBackground(bitmapDrawable);
        }
    }
}

DAO

@Override
public boolean updateRecipe(Recipe recipe) {
    ContentValues contentValues = new ContentValues();
    contentValues.put(KEY_TITLE, recipe.getTitle());
    contentValues.put(KEY_INGREDIENTS, recipe.getIngredients());
    contentValues.put(KEY_STEPS, recipe.getSteps());
    contentValues.put(KEY_CATEGORY, recipe.getCategory());
    contentValues.put(KEY_IMAGE, recipe.getImage());
    return sqLiteDatabase.update(DATABASE_TABLE, contentValues, KEY_ID + "=" + recipe.getId(), null) > 0;
}

我可以更新字符串数据,但图像保存后却无法真正更新,这可能是什么问题?

最佳答案

经过大量研究和测试,问题只是图像按钮无法重置。

image.setBackground(bitmapDrawable);

上面的方法似乎不适用于更新,我的快速解决方案只是保留代码不变,然后添加一个检测 onActivityResult 来确定它是否实际上是一个更新,然后添加字节数据直接存入数据库,而不是更新图像按钮,然后recreate() Activity,这是昂贵的过程,但对于简单的应用程序来说并不昂贵。

if (rowId != null) {
                ...
                recipe.setImage(DbBitmapUtility.getBytes(imageBitmap));
                recipeDAOImp.updateRecipe(recipe);
                recreate();
            }

一切按预期工作。

关于android - 将 Android 图像位图更新为 SQLite Blob,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41848200/

相关文章:

android - Scribe OAuth 无法在 Android 上运行,错误 500

C# 到 sqlite 输入字符串的格式不正确

Android:SQLite 查询未绑定(bind)整数参数?

android - BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions) 返回 FileNotFoundException

java - 如何找出应用程序保存我的可变位图的位置

android - 更新到 Android Studio 3.1 后项目不构建 : Program type already present: com. sun.activation.registries.LineTokenizer

android - 我做错了什么 - MapView 上的灰色方 block

java - 如何显示 ArrayList<Bitmap> 中的图像 (SQLlte)

java - Android 简单选项卡和工具栏

django - TransactionManagementError 与 Django Celeryd/django-celery 与 sqlite 后端