我正在尝试创建一个不需要显示百分比的进度条。
public boolean onOptionsItemSelected( MenuItem item ) {
switch( item.getItemId() ) {
case R.id.back:
this.dispatchKeyEvent( new KeyEvent( KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK ) );
finish();
return true;
case R.id.read:
// This is where I would start my spinner....
if( myService.getState() != 3 ) {
myService.connect( MainMenu.previousDevice, true );
}
readWaves();
return true;
default:
return super.onContextItemSelected( item );
}
}
微调器将在readWaves()函数中停止...
private void readWaves() {
waveResults = RelayAPIModel.NativeCalls.GetWavesJava( RelayAPIModel.WAVES_V );
// Turn the Spinner off Here.
doOtherThings();
}
我发现大量代码告诉我如何使用线程使用进度条,在xml文件中添加进度条以及许多其他方法。
我认为对我来说最好的方法是创建一个CustomDialog类来弹出并让旋转器旋转直到我调用它结束它。
显示的第一个答案here是我到目前为止找到我想要的最接近的答案,但不幸的是他的解决方案不起作用。它不起作用的原因是因为代码的最后一部分:
public MyProgressDialog(Context context) {
super(context, R.style.NewDialog);
}
我使用的是Android 2.3,style
没有R
属性。我尝试自己添加它并得到一个错误。有谁知道如何解决这个问题?
编辑:
这是我尝试使用ProgressDialog
case R.id.read:
pDialog = new ProgressDialog( Waves.this );
pDialog.setTitle( "Waves" );
pDialog.setMessage( "Reading..." );
pDialog.show();
if( myService.getState() != 3 ) {
myService.connect( MainMenu.previousDevice, true );
}
readWaves();
return true;
default:
return super.onContextItemSelected( item );
}
}
private void readWaves() {
if( spinnerChoice == 0 ) {
Log.i( "IN IF", "IN IF" );
// Diff Voltage
waveResults = RelayAPIModel.NativeCalls.GetWavesJava( RelayAPIModel.WAVES_V );
} else {
// Current
waveResults = RelayAPIModel.NativeCalls.GetWavesJava( RelayAPIModel.WAVES_I );
}
Log.i( "READ WAVES", "After If/Else" );
pDialog.dismiss();
/*
答案 0 :(得分:1)
已经为此特定目的创建了一个Dialog。查看ProgressDialog。您可以像这样使用它:
//show the dialog
ProgressDialog pd = new ProgressDialog(YourActivity.this);
pd.setTitle("Your title");
pd.setMessage("Helpful message to the user");
pd.show();
/**************
* Do some stuff
**************/
//Hide the dialog
pd.dismiss();
编辑:以下是选项菜单中的一小部分示例:
public boolean onCreateOptionsMenu(Menu menu) {
menu.add(0, 42, 0, "Option");
return true;
}
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case 42:
ProgressDialog pd = new ProgressDialog(this);
pd.show();
break;
default:
//Do nothing
}
return false;
}