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 6068097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:40:44+00:00 2026-05-23T09:40:44+00:00

cantmano is the index, it starts on 0. Another method increases with cant++. I

  • 0

cantmano is the index, it starts on 0. Another method increases with cant++.
I recheck that 0 <= cantmano <= 10

public void dibujar(){
    //actualiza la pantalla
    if (cantmano >= 0 && cantmano < 10 && cantcroupier >= 0 && cantcroupier < 10){
        TextView textomano = (TextView)findViewById(R.id.textView3);
        TextView textocroupier = (TextView)findViewById(R.id.textView5);
        CharSequence buffer = textomano.getText();

        textomano.setText( buffer + " " +
            String.valueOf(manojugador[cantmano].getPalo())+ " de " +
            String.valueOf(manojugador[cantmano].getNumero()) ); // <-- ERROR

        textocroupier.setText( String.valueOf(cantmano) );
    }
}

I get a nice

Caused by: java.lang.NullPointerException
    at com.pruebas.blackjack.blackjack.dibujar(blackjack.java:58)
    at com.pruebas.blackjack.blackjack.onCreate(blackjack.java:23)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2717)

EDITS:
.getNumero() returns the int with the value of a requested CARD. (playing card type)
.getPalo() returns an int where 1= diamonds, etc.

initialization of manojugador:

Carta manojugador[]= new Carta[10];

constructor of Carta:

public Carta(){
    int palo=0;
    int numero=0;
}

MIDNIGHT UPDATE:
With some improvements i managed it to get over the error. BUT now the array has all 0 values when written. This has to be an easy to solve but that’s the final step before accepting the best answer.

Here’s the method that adds cards:

public void hit(View v){
        //sacan cartas
        if (cantmano < manojugador.length){
        manojugador[cantmano]=mazo.darcarta(); //adds a random Card to the manojugador. mazo means deck.
        manocroupier[cantcroupier]=mazo.darcarta(); //adds a random Card to the manojugador. mazo means deck.
        cantmano++;
        cantcroupier++;
        }
        dibujar();
    }
  • 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-23T09:40:45+00:00Added an answer on May 23, 2026 at 9:40 am

    Your manojugador array null elements and your cantmano is somehow pointing to one of those null elements.

    For instance, let’s say you have:

    ManoJugador [] cantmano = new ManoJugador[10];
    
    cantmano[0] = new ManoJugador();
    cantmano[1] = new ManoJugador();
    cantmano[2] = new ManoJugador();
    

    You array beyond index 3 you have nulls. That’s why when your try to get the numero of null you get NullPointerException.

    EDIT

    As per your edit:

    Yeap, definitely, you have a null value there. Debug that part and you’ll see some null values

    hint: System.out.println( java.util.Arrays.toString( someArray ));

    Suerte!

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

Sidebar

Related Questions

No related questions found

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.