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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:59:09+00:00 2026-06-01T22:59:09+00:00

I want to display x number of an xml layout within an activity based

  • 0

I want to display x number of an xml layout within an activity based upon a loop of data from a parcelable array. For this example, I’ve changed the array size to a fixed value of 3.

The xml of the layout I am wanting to inflate is:

<?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="wrap_content"
android:orientation="vertical" >
<TextView
    android:id="@+id/tv_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>    
    <RadioGroup android:id="@+id/rg_type"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Yes"
        android:tag="1" />
    <RadioButton
        android:id="@+id/radioButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="No"
        android:tag="0" />
    <RadioButton
        android:id="@+id/radioButton3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Don't Know"
        android:tag="3" />    
</RadioGroup>
</LinearLayout>

The xml of the parent page is:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:orientation="vertical"> 
<LinearLayout 
    android:id="@+id/ll_content"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>

This is the code for the Activity:

public class PainRecord_FollowUp extends Activity {

LinearLayout llContent;
Context context;
PainDataItem pd_in; //this is the Parcelable extra received

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

    Bundle extras = getIntent().getExtras();
    if (extras != null) {
        pd_in = extras.getParcelable("m_PainDataItem");
    }        
    LayoutInflater layoutInflator = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    LinearLayout insertPoint = (LinearLayout) findViewById(R.id.ll_content);
    List views = new ArrayList();

    for(int i=0; i<3; i++){
        View view = layoutInflator.inflate(R.layout.row_painrecord_followup, null);
        TextView textView = (TextView) view.findViewById(R.id.tv_title);
        textView.setText("did x help " + i);
        view.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
        views.add(view);
    }
    for(int i = 0; i<views.size(); i++)
        insertPoint.addView((View) views.get(i));
}
}

Instead of showing each layout underneath each other, it displays it like this:

enter image description here

If I change to LayoutParams.FILL_PARENT, then just the [0] loop value shows.

Any advice greatly received.

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-06-01T22:59:12+00:00Added an answer on June 1, 2026 at 10:59 pm

    Set your LinearLayout orientation to vertical

    <LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:orientation="vertical">
    </LinearLayout>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In My HTML Page I want to display certain Number of Buttons Based on
I want to input a string or number from the keyboard and then display
I want display data from database in Listbox...Here is my code, It is not
I am trying to generate HTML which will display the data from XML through
My XML data is: <Num>12.6</Num> I bind this to a XAML TextBlock and want
I want to display the number say 1 to 100 by selecting a item
I want to display the number of products on home page . My code
Simply, I want to display the number of unread messages in a label inside
I want to display the total number of comments for a particular post in
I want to display svn revision number to a text file I am getting

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.