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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:48:40+00:00 2026-06-01T14:48:40+00:00

When I run the below code, everything goes great until I change the value

  • 0

When I run the below code, everything goes great until I change the value of the seekBar. The onProgressChange changes the value of the text for myValue. I get a force close and it gives me the log cat entries below.

While going through debug, the exception thrown said it could not find ID 2, which you can tell is myValue, to be expected. Please let me know what you think.
Thanks

04-06 18:15:38.576: E/AndroidRuntime(25164):android.content.res.Resources$NotFoundException: String resource ID #0x2f
04-06 18:15:38.576: E/AndroidRuntime(25164):    at android.content.res.Resources.getText(Resources.java:201)
04-06 18:15:38.576: E/AndroidRuntime(25164):    at android.widget.TextView.setText(TextView.java:2877)
04-06 18:15:38.576: E/AndroidRuntime(25164):    at thisPackage.Tabs.CustomSeekBar.onProgressChanged(CustomSeekBar.java:74)

ColorsActivity (main)

public class ColorsActivity extends Activity
{
CustomSeekBar red = new CustomSeekBar();
RelativeLayout theItem;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.seekbarlist);     
    RelativeLayout thisOne = (RelativeLayout)findViewById(R.id.mainLayout);



    attachLayout(thisOne, red, "red", 1);
    //attachLayout(thisOne, "blue", 2);
    //attachLayout(thisOne, "green", 3);

   // Amarino.connect(this, "00:11:11:21:05:53");
}
public void attachLayout(RelativeLayout layout, CustomSeekBar object, String label, int id)
{

    theItem = object.createCustomSeekBar(this, label);
    theItem.setId(id);
    RelativeLayout.LayoutParams myLayoutParams  =  new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    myLayoutParams.addRule(RelativeLayout.BELOW,id-1);
    theItem.setLayoutParams(myLayoutParams);
    layout.addView(theItem, id);
}


}

CustomSeekBar

public class CustomSeekBar implements SeekBar.OnSeekBarChangeListener {

  Context myContext;
 RelativeLayout myLayout;
  TextView myValue;
  TextView myLabel;
  SeekBar mySeekBar;

  public void CustomSeekBar(){

  }


public RelativeLayout createCustomSeekBar(Context context, String label){


    myContext = context;                
    myLayout = new RelativeLayout(myContext); 


    mySeekBar = new SeekBar(myContext);
    myLabel = new TextView(myContext);
    myValue = new TextView(myContext);  

    mySeekBar.setId(1);
    myLabel.setId(2);
    myValue.setId(3);

    RelativeLayout.LayoutParams mySeekBarParams =  new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    RelativeLayout.LayoutParams myLabelParams   =  new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    RelativeLayout.LayoutParams myValueParams   =  new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);

    int seekBarId =  mySeekBar.getId();
    int labelId =  myLabel.getId();

    myLabelParams.addRule(RelativeLayout.BELOW,seekBarId);
    myValueParams.addRule(RelativeLayout.BELOW,seekBarId);
    myValueParams.addRule(RelativeLayout.RIGHT_OF,labelId);

    mySeekBar.setLayoutParams(mySeekBarParams);
    myLabel.setLayoutParams(myLabelParams);
    myValue.setLayoutParams(myValueParams);

    myLabel.setText(label);
    myValue.setText("hello");       
    mySeekBar.setOnSeekBarChangeListener(this);

    myLayout.addView(myLabel);
    myLayout.addView(myValue);
    myLayout.addView(mySeekBar);


    return myLayout;

}

 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) {
    myValue.setText(progress);      
    //Amarino.sendDataToArduino(myContext, "00:11:11:21:05:53", 'A', progress);
 }
 public void onStopTrackingTouch(SeekBar seekBar){

 }
 public void onStartTrackingTouch (SeekBar seekBar){
 }


}
  • 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-01T14:48:42+00:00Added an answer on June 1, 2026 at 2:48 pm

    You are setting the text to an int, so Android thinks you are trying to reference a resource by id. Converting progress to a string should solve your problem. E.g. Integer.toString(progress).

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

Sidebar

Related Questions

When I run the following code, I get the exception below: ''# NOTE: ExcelApp
I'm trying to run the below-mentioned code in VB(Excel Macro) but I'm stuck with
I am trying to run the code below but it keeps locking up my
Code below does not run correctly and throws InvalidOperationExcepiton . public void Foo() {
the code below works fine but it takes an absolute age to run. How
Any ideas given the code below why the highlight is being triggered to run
When I run a Test Project on Visual Studio I use the code below
If I run the function below before defining it, I will get this error...
I've the code below that works great in my ready function in jquery, when
I am using Window 7, when I run my code in local everything is

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.