好的,所以我的程序应该帮助用户跟踪他们在任何特定任务中取得的进展。
它有<EditText>
视图,要求用户输入一个数字,程序有OnClickListener()
,一旦用户点击按钮添加数字输入,它就会激活一系列代码。
序列将此输入转换为字符串,然后转换为int。 int被添加到状态栏的进度中(状态栏仅用作其进度的图形表示)。
我在Netbeans上没有任何错误,我写的内容似乎没有任何直觉错误,但每次我尝试运行它时应用程序崩溃。这是我第一次尝试进度条,所以我可能只是遗漏了一些东西我没有看到。感谢您提供的任何帮助!我真的很感激!
package com.example.progresstracker;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ProgressBar;
public class MainActivity extends Activity {
Button add;
ProgressBar mProgress;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mProgress.setProgress(0);
mProgress.setMax(100);
add = (Button) findViewById(R.id.bAdd);
mProgress = (ProgressBar) findViewById(R.id.prog);
add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
EditText eText = (EditText) findViewById(R.id.edit);
String message = eText.getText().toString();
int num = Integer.parseInt(message);
mProgress.incrementProgressBy(num);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
答案 0 :(得分:1)
尝试放入此行
mProgress = (ProgressBar) findViewById(R.id.prog);
在此之前
mProgress.setProgress(0);
在开始调用方法之前,需要初始化mProgress。
P.S。如果您遇到错误,那么将堆栈跟踪包含在代码旁边总是有用的。