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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:26:31+00:00 2026-06-01T05:26:31+00:00

I am having problems getting my TableLayout to display my rows. I’m propagating the

  • 0

I am having problems getting my TableLayout to display my rows.

I’m propagating the rows programmatically via this method:

private void buildStatesTable() {
    Log.d(SelectStatesPanel.class.getCanonicalName(), "Entering Build States Table");
    ArrayList<String> states = new ArrayList<String>();
    Random rand = new Random();

    for(int i = 0; i < 10; i++){
        if(i < goodStates.length){
            states.add(goodStates[i]);
        }else{
            states.add(badStates[rand.nextInt(badStates.length)]);
        }
    }

    Collections.shuffle(states);

    TableLayout tl = (TableLayout) findViewById(R.id.statesTable);
    final int NUM_PER_ROW = 2;

    for(int i = 0; i < (states.size() / NUM_PER_ROW); i++){
        TableRow tr = new TableRow(getContext());
        tr.setLayoutParams(new LayoutParams(
                LayoutParams.FILL_PARENT,
                LayoutParams.WRAP_CONTENT));

        for(int j = 0; j < NUM_PER_ROW && (i*NUM_PER_ROW + j) < states.size(); j++){
            TextView lblState = new TextView(getContext());
            lblState.setText(states.get(i*NUM_PER_ROW + j));
            lblState.setTextColor(Color.BLACK);
            lblState.setLayoutParams(new LayoutParams(
                    LayoutParams.FILL_PARENT,
                    LayoutParams.WRAP_CONTENT));
            lblState.setClickable(true);
            lblState.setOnClickListener(this);
            tr.addView(lblState);

            //Log.d(SelectStatesPanel.class.getCanonicalName(), "Adding State: " + states.get(i*NUM_PER_ROW + j));
            Log.d(SelectStatesPanel.class.getCanonicalName(), "\t\t\t (" + i + ", " + j + ")");
        }

        // Add the TableRow to the TableLayout
        tl.addView(tr);
        Log.d(SelectStatesPanel.class.getCanonicalName(), "Adding Row");
    }
}

And this is my XML (table layout is at the bottom):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"        
        android:layout_margin="5dip"

        android:text="Good choice! There's hope for you yet."
        android:textSize="16dip"
        android:textStyle="bold"
        android:gravity="center"
        />

    <TextView
        android:id="@+id/txtLex"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"        
        android:layout_margin="5dip"

        android:text="Lexington"
        android:textSize="14dip"
        android:gravity="center"
        />
    <TextView
        android:id="@+id/txtTampa"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"        
        android:layout_margin="5dip"

        android:text="Tampa"
        android:textSize="14dip"
        android:gravity="center"
        />
    <TextView
        android:id="@+id/txtSacramento"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"        
        android:layout_margin="5dip"

        android:text="Sacramento"
        android:textSize="14dip"
        android:gravity="center"
        />
    <TextView
        android:id="@+id/txtHiltonhead"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"        
        android:layout_margin="5dip"

        android:text="Hiltonhead"
        android:textSize="14dip"
        android:gravity="center"
        />

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"        
        android:layout_margin="5dip"

        android:gravity="center"
        android:src="@drawable/usa"
        />
    <TableLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"        
        android:layout_margin="5dip"
        android:id="@+id/statesTable"
        android:stretchColumns="0,1">        
    </TableLayout>


</LinearLayout>

Why isn’t my table layout’s showing content?

  • 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-06-01T05:26:33+00:00Added an answer on June 1, 2026 at 5:26 am

    I discovered the problem on my own.

    The problem was this:

            lblState.setLayoutParams(new LayoutParams(
                    LayoutParams.FILL_PARENT,
                    LayoutParams.WRAP_CONTENT));
    

    Specifying TableRow.LayoutParams fixed the problem.

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

Sidebar

Related Questions

I've been having problems getting jqmodal modal dialogs to display on links added dynamically
Hi I'm having problems getting this to work in mysql. DELIMITER $$ DROP PROCEDURE
I'm having problems getting this code to populate output parameters with MSSQL ODBC 10.0
I'm having problems getting the new data from the RandomNumbers List I got this
I am having problems getting my form to Post to my Save method in
I'm having problems getting my brain around this. I have four models: Account has
I'm having problems getting my JPanel to display properly. I want to use different
I've been having problems getting jqGrid to sort. I'd like to preferable do this
I was having problems getting a null layout manager working, and I found this
I'm having problems getting this to work, class A { public: A(int n) {

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.