Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7534029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:53:49+00:00 2026-05-30T05:53:49+00:00

Can any help with this, sure it is something simple but can’t see it.

  • 0

Can any help with this, sure it is something simple but can’t see it.

Doing a bulkInsert to content provider (UserDictionary) but all inserts have same “word” value. Issue is Array of ContentValues.
This is some test code I have:

  public void mClick(View v){

        int batchSize = 25;
        ContentValues[] mValueArray = new ContentValues[batchSize];
        List<ContentValues>mValueList = new ArrayList<ContentValues>();
        ContentValues mNewValues = new ContentValues();

        mNewValues.put(UserDictionary.Words.APP_ID, this.getPackageName());
        mNewValues.put(UserDictionary.Words.LOCALE, "en");
        mNewValues.put(UserDictionary.Words.FREQUENCY, "255");
        mNewValues.put(UserDictionary.Words.WORD, "WORD1");

        mValueList.add(mNewValues);

        mNewValues.put(UserDictionary.Words.APP_ID, this.getPackageName());
        mNewValues.put(UserDictionary.Words.LOCALE, "en");
        mNewValues.put(UserDictionary.Words.FREQUENCY, "255");
        mNewValues.put(UserDictionary.Words.WORD, "WORD2");

        mValueList.add(mNewValues);

        mValueArray = new ContentValues[mValueList.size()];
        mValueList.toArray(mValueArray); 

        Log.i(TAG,mValueList.toString());
        Log.i(TAG,mValueArray[0].toString());
        Log.i(TAG,mValueArray[1].toString());


    }

and from log, can see that mValueArray has duplicate values.

02-22 12:33:51.060: I/log(859): [appid=dictionary word=WORD2 frequency=255 locale=en, appid=dictionary word=WORD2 frequency=255 locale=en]
02-22 12:33:51.070: I/log(859): appid=dictionary word=WORD2 frequency=255 locale=en
02-22 12:33:51.070: I/log(859): appid=dictionary word=WORD2 frequency=255 locale=en

Obviously I am doing something incorrect with adding values to arrays. Can any one help me?
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T05:53:52+00:00Added an answer on May 30, 2026 at 5:53 am

    You’re modifying the same object. This should work fine:

     public void mClick(View v){
    
            int batchSize = 25;
            ContentValues[] mValueArray = new ContentValues[batchSize];
            List<ContentValues>mValueList = new ArrayList<ContentValues>();
            ContentValues mNewValues = new ContentValues();
    
            mNewValues.put(UserDictionary.Words.APP_ID, this.getPackageName());
            mNewValues.put(UserDictionary.Words.LOCALE, "en");
            mNewValues.put(UserDictionary.Words.FREQUENCY, "255");
            mNewValues.put(UserDictionary.Words.WORD, "WORD1");
    
            mValueList.add(mNewValues);
    
            mNewValues = new ContentValues();
            mNewValues.put(UserDictionary.Words.APP_ID, this.getPackageName());
            mNewValues.put(UserDictionary.Words.LOCALE, "en");
            mNewValues.put(UserDictionary.Words.FREQUENCY, "255");
            mNewValues.put(UserDictionary.Words.WORD, "WORD2");
    
            mValueList.add(mNewValues);
    
            mValueArray = new ContentValues[mValueList.size()];
            mValueList.toArray(mValueArray); 
    
            Log.i(TAG,mValueList.toString());
            Log.i(TAG,mValueArray[0].toString());
            Log.i(TAG,mValueArray[1].toString());
    
    
        }
    

    A bit of more explanation about why your code does not work: when you use add(), you’re saving the object reference (pointer) in the List. It does not copy the object. When you modify that same object later, the reference in the List still points to this one, and thus you’re modifying that one as well. You just have 2 references for the same object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can't seem to find any help on this but under the Net tab
I'm sure that I'm missing something simple to get this implemented, but have run
This is probably something simple, but I can't seem to find the answer. I
I am sure this is a fairly simple question but I can't seem to
I'm sure this is something simple but I am just not seeing it. My
I am sure this is very simple but I can't find an answer anywhere.
can any body help me on separating this example of data that i need
any help you can give is very gratefully accepted. I've been looking at this
I need some drawings in my tableview. How can i do this. Any help
Okay guys, I'm sure this has a very simple solution but my searches are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.