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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:29:17+00:00 2026-06-08T17:29:17+00:00

I have a String[] that contains number of strings, what I’m trying to do

  • 0

I have a String[] that contains number of strings, what I’m trying to do is set a ProgressBar’s progress according to which string is used.

For example, I have already determined number of strings and set max progress of progress bar accordingly; here is the list:

 "zero one two three four five six seven eight nine...."

..

 String[] cpu0freqslist = cpu0freqs.split("\\s");
 countcpu0 = cpu0freqslist.length;

..

 ProgressBar cpu0progbar = (ProgressBar)findViewById(R.id.progressBar1);
 cpu0progbar.setMax(countcpu0);

But now I need to set the progress of progressbar according to the item that is used, and I don’t know how to get item position.

So if I want to set a progress bar to the position of item five (in this case it would be 6) how can I do that – how can I get the position of item five?

  • 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-08T17:29:19+00:00Added an answer on June 8, 2026 at 5:29 pm

    essentially what you’re looking for is a indexOf(…) …

    since arrays don’t have it, you’ll have to search thru it to find the desired string. so something like this (feel free to optimize)

     public int indexOfString(String searchString, String[] domain)
     {
         for(int i = 0; i < domain.length; i++)
            if(searchString.equals(domain[i]))
               return i;
    
         return -1;
     }
    

    Then again, if you dynamically fetch your String[] data, it would be wiser to use an ArrayList and just invoke list.indexOf(myString);

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

Sidebar

Related Questions

I have strings which contains thousand separators, however no string-to-number function wants to consume
I have a string that contains a known number of double values. What's the
I have strings that contain a variable number of leading hyphens and which may
Guys, I have a string that contains a decimal number. The problem is, sometimes
I have a string that contains unwanted numbers ( any number higher than 5000
If I have a set number of String 's that I want to check
We have a Java project which contains a large number of English-language strings for
I have a string that contains at least one number can contain multiple numbers
I have a Version class that contains a version_number string, and can obtain a
I have a string that contains HTML image elements that is stored in a

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.