0

我正在编写一个 android 应用程序,主要活动启动并填充联系人列表,并且需要提示用户今天对所有联系人的评分(promptUserForInput)并立即处理收到的所有联系人评分。我想我可以使用一个对话框来提示每个联系人并从用户那里获得评分。但是下面的代码失败了,因为主线程没有等待用户完成输入所有用户的评分。

这是我在主要活动中为所有联系人姓名在 do while 循环中调用的函数。评级是一个全局变量。

double rating=0;
private synchronized void promptUserForInput(String firstName, String lastName) {

    final String fname = firstName;
    final String lName = lastName;

    AlertDialog.Builder alert = new AlertDialog.Builder(this);
    String custName = firstName + " " + lastName;
    final EditText input = new EditText(this);
    alert.setTitle(custName);
    alert.setView(input);
    Log.v("Diva: in promptUserForInput", "setting positive buton");
    alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface arg0, int arg1) {
            Editable res = input.getText();
            if(res == null) {
                Log.v("Diva..", "In positivebutton..befoer getting rating res is null");
            }
            rating = Double.valueOf(input.getText().toString());
        }
    });

    alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface dialog, int which) {
            rating=0;
        }
    });

    alert.show();        

}

我的来电者promptUserForInput()如下所示。

// get list of contacts in a cursor
Cursor cursor = ManageDataBaseActivity.queryDataBase(this,     
ManageDataBaseActivity.CONTACT_INFO_TABLE);

if(cursor.getCount()>0) {

    double totalRatingForStats=0;
    cursor.moveToFirst();
    do {
        String[] colNames = cursor.getColumnNames();
        Log.v("Diva Colum names = ", colNames[0] + " " + colNames[1] + " " + colNames[2] + " " + colNames[3]);

        String firstName = cursor.getString(cursor.getColumnIndex("FirstName"));

        Log.v("Diva ..:", firstName);
        String lastName = cursor.getString(cursor.getColumnIndex("LastName"));
        String key = ManageDataBaseActivity.getDbKey(firstName, lastName, 
                                    date, ManageDataBaseActivity.CUSTOMER_DATA_TABLE);
        promptUserForInput(firstName, lastName);
        double ratingReceived = rating;

        totalRatingForStats = totalRatingForStats+ratingReceived;
        // some more processing

                        ManageDataBaseActivity.insertValueToDB(ManageDataBaseActivity.
                                CONTACT_DATA_TABLE+" ", .....);
    } while(cursor.moveToNext());           
4

2 回答 2

1

简短的回答:不要。

长答案:您不应该在等待用户输入时阻塞 GUI 程序的主线程。相反,您应该提供一个继续按钮,该按钮会触发一个导致程序继续的事件。有几种方法可以实现这一点,首先想到的是信号和信号量。

我不太精通 Android 编程 - 但 API 中应该有类似的东西,可能依赖于 Intents。

于 2013-03-10T14:44:16.260 回答
1

在 Activity 的主线程中循环通常不是一个好主意。但是您可以实现类似pollNext()从光标获取下一个数据集并将单击方法更改为以下方法的方法:

@Override
public void onClick(DialogInterface dialog, int which) {
    // do your rating stuff

    // reads the next dataset
    pollNext();

    // shows the next dialog
    // of course, firstName and lastName must be membervariables to make this work
    promptUserForInput(firstName, lastName); 
}

其背后的想法非常普遍,也用于MVC 模式

于 2013-03-10T14:45:00.770 回答