来自String的setProgress,给出错误

时间:2013-10-22 18:19:49

标签: android

我是一个Android菜鸟,并尽我所能去理解它。我正在尝试制作一个apk只是为了好玩,更好地理解事情,还有一个问题,即使在搜索谷歌之后我还没有解决。 所以,问题是我有一个只允许数字的EditText,并且在那里插入一个数字,它将进入一个字符串,从那里将被引入setProgress作为'百分比'。至少,这就是我想要的;因为,在将该值放入字符串并尝试将其作为setProgress中的百分比读取之后,eclipse将不会让我:

The method setProgress(int) in the type ProgressBar is not applicable for the arguments (String)

这是代码: *不要为其他任何事情烦恼,它只是为了测试......

    package com.example.singur;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.inputmethod.EditorInfo;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ProgressBar;
import android.widget.RatingBar;
import android.widget.Switch;
import android.widget.TextView;
import android.widget.TextView.OnEditorActionListener;
import android.widget.ToggleButton;

public class MainActivity extends Activity implements OnClickListener
{

    Button button;
    ToggleButton toggle;
    TextView rateText;
    TextView textProgress;
    Switch legit;
    EditText edit;
    RatingBar rating;
    ProgressBar progress;
    int count = 0;
//  int value = 0;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (Button) findViewById(R.id.button);
        toggle = (ToggleButton) findViewById(R.id.toggle);
        rateText = (TextView) findViewById(R.id.rateText);
        textProgress = (TextView) findViewById(R.id.textProgress);
        legit = (Switch) findViewById(R.id.legit);
        edit = (EditText) findViewById(R.id.edit);
        rating = (RatingBar) findViewById(R.id.rating);
        progress = (ProgressBar) findViewById(R.id.progress);

        legit.setEnabled(false);
        edit.setEnabled(false);

        button.setOnClickListener(this);
        toggle.setOnClickListener(this);
        edit.setOnClickListener(this);
        //rating.setOnRatingBarChangeListener(this);
    }
    public void onClick(View v)
    {
        switch(v.getId())
        {
            case R.id.button:
                textProgress.setText("button clicked" + count + progress.getProgress());
                count++;
                progress.setProgress(count);
                break;
            case R.id.rating:
                break;
            case R.id.toggle:
                if(toggle.isChecked() == true)
                {
                    edit.setEnabled(true);
                    edit.setText("" + count);
                    //count++;
                    //progress.setProgress(count);
                    textProgress.setText("button clicked" + count + progress.getProgress());
                }else
                {
                    edit.setEnabled(false);
                    edit.setText("disabled but count = " + count);
                    //count++;
                    //progress.setProgress(count);
                    textProgress.setText("button clicked" + count + progress.getProgress());
                }
                count++;
                textProgress.setText("toggle:"+count);
                break;
            case R.id.edit:
                if(edit.isEnabled() == true)
                {
                    edit.setOnEditorActionListener(new OnEditorActionListener()
                    {
                        @Override
                        public boolean onEditorAction(TextView v, int actionId, KeyEvent event)
                        {
                            if (actionId == EditorInfo.IME_ACTION_DONE)
                            {
                                // do your stuff here
                                String value = edit.getText().toString();
                                progress.setProgress(value.valueOf(value));
                            }
                            return false;
                        }
                    }); 
                }
        }
    }
}

1 个答案:

答案 0 :(得分:1)

您需要将String转换为int。如错误所示,setProgress()只接受整数,而从EditText得到的值是一个字符串(即使字符串只能包含数字)。

最简单的方法是使用Integer.parseInt(String)

你的代码看起来像这样:

String value = edit.getText().toString();
progress.setProgress(Integer.parseInt(value));

另请注意,如果无法将String解析为整数,Integer.parseInt()将抛出NumberFormatException。请务必妥善处理该异常。