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

  • Home
  • SEARCH
  • 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 6703967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:14:02+00:00 2026-05-26T07:14:02+00:00

I have a ListActivity that I’m trying to bind to an array of business

  • 0

I have a ListActivity that I’m trying to bind to an array of business objects using a custom ArrayAdapter.

When I run the application on either the emulator or the real android device I get a null reference in the ArrayAdapter on the line “holder.txtTeam1.setText(info.Team1);”. After doing some debugging it looks like the call to inflate the layout didn’t actually create the child TextViews, it only created the outter TableLayout.

This is all based on a tutorial I found on the internet, and I’ve been banging my head off the desk for almost a week on this one. Can anyone tell me what I’m doing wrong?

The activity looks like this:

    public class BaseballPressActivity extends ListActivity {

    private GameDataAdapter adapter;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        adapter = new GameDataAdapter(this, new GameData[]{new GameData("3:10pm","Team 1","Team 2")});
        this.setListAdapter(adapter);
        }
    }

The ArrayAdapter looks like this:

public class GameDataAdapter extends ArrayAdapter<GameData> {

Context context;
GameData data[] = null;

public GameDataAdapter(Context context, GameData[] data) {
    super(context,R.layout.listitem_game, R.id.Name1, data);

    this.context = context;
    this.data = data;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;
    GameViewHolder holder = null;

    if(row == null)
    {
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        row = inflater.inflate(R.layout.test , parent, false);

        holder = new GameViewHolder();
        holder.txtTeam1 = (TextView)row.findViewById(R.id.Name1);

        row.setTag(holder);
    }
    else
    {
        holder = (GameViewHolder)row.getTag();
    }

    GameData info = data[position];
    holder.txtTeam1.setText(info.Team1);

    return row;
}

static class GameViewHolder
{
    TextView txtTeam1;
    TextView txtTeam2;
    TextView txtGameTime;
}

}

And the layout for the list activity item looks like this:

    <?xml version="1.0" encoding="utf-8"?>
<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <TextView android:text="TextView" android:layout_weight="0" android:id="@+id/textView1" android:layout_height="wrap_content" android:layout_width="0dp"></TextView>
        <ImageView android:id="@+id/imageView1" android:src="@drawable/icon" android:layout_height="wrap_content" android:layout_weight="0" android:layout_width="0dp"></ImageView>
        <LinearLayout android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_height="wrap_content" android:layout_weight="1" android:layout_width="0dp">
            <TextView android:text="TextView" android:id="@+id/Name1" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
            <TextView android:text="TextView" android:id="@+id/Name2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
        </LinearLayout>
        <ImageView android:id="@+id/imageView2" android:src="@drawable/icon" android:layout_height="wrap_content" android:layout_weight="0" android:layout_width="0dp"></ImageView>
    </TableRow>
    </TableLayout>
  • 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-26T07:14:03+00:00Added an answer on May 26, 2026 at 7:14 am

    ok, i think the problem is here

     row = inflater.inflate(R.layout.test , parent, false);
    

    change false to true, i think you have to attach the view to it’s parent.

    if that doesn’t work try this.

     row = inflater.inflate(R.layout.test , null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a ListActivity class that uses a custom ArrayAdapter and Holders. I
I've my main custom listactivity class that have a instance object of my custom
I have a ListActivity that presents a list of names from a database using
Hey guys, I have a listactivity that uses a custom row layout. The layout
I have created a custom ListActivity that shows a list of skills and buttons
I have two ListActivity classes that I want to pass into into a third
I have a ListActivity which has an adapter that crashes. Here is the code
I am facing a problem. I have a Class that extends listactivity and its
Currently I have a class that is extending the ListActivity class. I need to
I have a ListActivity that should display quite a lot of items and where

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.