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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:20:38+00:00 2026-05-23T10:20:38+00:00

I have an Android activity with eight TextViews, named tvStat1, tvStat2, …, tvStat8. I

  • 0

I have an Android activity with eight TextViews, named tvStat1, tvStat2, …, tvStat8. I have a function that takes an integer as a parameter. What I want to do is something like this:

public void incrementScore(int StatisticCategory){
    String s "R.id.tvStat" + String.ValueOf(StatisticCategory);
    TextView tvGeneric = (TextView)findViewById(s);
    // ... do something with the text in the generic TextView...
}

But of course, this doesn’t work, since the findViewById method only takes an integer as a parameter, and as such doesn’t like my way of identifying a generic TextView based on an incoming parameter. Since I only have eight TextViews, it isn’t too much effort to write a switch statement… but I think there’s got to be a better way. Any ideas?

  • 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-23T10:20:38+00:00Added an answer on May 23, 2026 at 10:20 am

    You can use ViewGroup.getChildCount() and ViewGroup.getChildAt(). Here is an exmple.


    Assuming you have layout:

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

    You can use next code to assign text to TextViews:

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    
        LinearLayout textGroup = (LinearLayout)findViewById(R.id.text_group);
    
        for(int i = 0; i < textGroup.getChildCount(); i++)
        {
            TextView text = (TextView)textGroup.getChildAt(i);
            text.setText("This is child #"+i);
        }
    

    }

    enter image description here

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

Sidebar

Related Questions

So I have a very simple android activity that starts a timer when you
I have an Android Activity that needs to catch two different broadcasts. My current
I have an android activity that needs to call another activity (to get a
I have an Android Activity that displays Google Maps through MapView control and extending
I have an Android activity that displays a list of log entries (using a
I have an Android widget that has a configure activity. I also have an
I have an Android activity that, onCreate(), will query a database and display the
I have developed an Android activity that pushes NDEF message like in android sample
I have an Android activity that is largely transparent, much like a toast. However
I have an Android Activity that uses a class that I developed that extends

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.