我在我的应用程序中创建了一个从数据库中删除记录的函数。我正在使用单独的活动来删除。当我输入要删除的行ID时,我的应用程序告诉我应用程序已停止工作,但是当我单击确定时,它会将我返回到主活动屏幕。我正在使用notifyAll()函数来更新数据库和我在主要活动上的列表视图,我认为这是它出错的地方,但我无法弄清楚为什么我仍然是新的android。
这是我使用notifyAll()
的活动package com.example.rory.dbtest;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.pinchtapzoom.R;
public class Delete extends Activity implements View.OnClickListener{
public EditText edit1;
Button delete;
DBAdapter db = new DBAdapter(this);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_delete);
edit1 = (EditText)findViewById(R.id.edit1);
delete = (Button)findViewById(R.id.deleteBtn);
delete.setOnClickListener((View.OnClickListener) this);
}
public void onClick(View v) {
String userInput = edit1.getText().toString();
//if the ROW ID its a number (long)
try{
long rowID = Long.parseLong(userInput);
//call the delete method
db.open();
db.deleteContact(rowID);
db.close();
db.notifyAll();
}catch(NumberFormatException e){
Log.e("INPUT ERROR","Input is not a number!",e);
//notify the user that the input is invalid.
Toast.makeText(this,"Invalid Value!",Toast.LENGTH_LONG).show();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.delete, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
这是我得到的logcat错误
object not locked by thread before notifyAll()
答案 0 :(得分:0)
试一试:
synchronized (this){
}
您需要在并发请求中锁定或同步您的方法。
答案 1 :(得分:0)
db.notifyAll();
notifyAll
是Object
的一种方法,用于唤醒所有正在等待此对象监视器的线程。它不是与sqlite相关的方法,您不需要调用它(因为您的db对象不充当sync-object)。你可以摆脱那个电话。