如何在android中获取seekbar float值

时间:2016-02-23 07:22:50

标签: android android-seekbar

您正在尝试使用帮助og url(r'^user/create/step1/$', UserStep1.as_view(), name='step-1'), url(r'^user/create/step2/(?P<pk>[0-9]+)/$', UserStep2.as_view(), name='step-2'), 方法获取搜索栏值。我可以获取getProgress中的值,但我需要获取integerfloat

seekbar

我已使用上述方法检索值,但其值为 double goal=bar.getProgress(); 而不是integer值。 Plz帮助。谢谢你

1 个答案:

答案 0 :(得分:1)

这是获取搜索栏当前值的工作代码,您必须尝试这一点。它工作正常。如果你想在float中获取seekbar值,那么使用float而不是int。

public class MainActivity extends Activity  implements SeekBar.OnSeekBarChangeListener{

SeekBar mSeekBar;
TextView mProgressText;
TextView mTrackingText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

      mSeekBar = (SeekBar)findViewById(R.id.seek);
        mSeekBar.setOnSeekBarChangeListener(this);
        mProgressText = (TextView)findViewById(R.id.progress);
        mTrackingText = (TextView)findViewById(R.id.tracking);
    }

    public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) {
        mProgressText.setText(progress + " " +
                getString(R.string.seekbar_from_touch) + "=" + fromTouch);
    }

    public void onStartTrackingTouch(SeekBar seekBar) {
        mTrackingText.setText(getString(R.string.seekbar_tracking_on));
    }

    public void onStopTrackingTouch(SeekBar seekBar) {
        mTrackingText.setText(getString(R.string.seekbar_tracking_off));
    }
}