0

我在我的代码中使用处理程序在每个特定时间间隔更新应用程序。

为此,我编写了以下代码:

public class Messages extends Activity {


    protected Handler handler = new Handler();

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

        Intent intent = getIntent();

        String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
        String id = intent.getStringExtra(MainActivity.EXTRA_ID);
        String[] lst = null;
        ListView lm=(ListView)findViewById(R.id.listView1);
        TextView tv = (TextView)findViewById(R.id.textView1);

        tv.setText("Welcome " + message);

        handler.postDelayed(new UpdateTask(),500);


    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.messages, menu);
        return true;
    }

    class UpdateTask implements Runnable {

        @Override
        public void run() {
            // TODO Auto-generated method stub

            setContentView(R.layout.activity_messages);

            Intent intent = getIntent();

            String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
            String id = intent.getStringExtra(MainActivity.EXTRA_ID);
            String[] lst = null;
            ListView lm=(ListView)findViewById(R.id.listView1);
            TextView tv = (TextView)findViewById(R.id.textView1);

            tv.setText("Welcome " + message);

            CallSoap cs=new CallSoap();

            lst=cs.GetMessage(id);

            ArrayAdapter<String> adpt = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,lst);

            lm.setAdapter(adpt);

            handler.postDelayed(this, 500);
        }

    }


}

但它给了我错误:

ArrayAdapter<String> adpt = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,lst);

文本:Constructor ArrayAdapter is undefined.

请帮我。

4

3 回答 3

1

将构造函数中的“this”引用替换为 ActivityName.this。

改变

ArrayAdapter<String> adpt = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,lst);

ArrayAdapter<String> adpt = new ArrayAdapter<String>(Messages.this, android.R.layout.simple_list_item_1,lst);

应该管用。

话虽如此,如果您只是在寻找定期更新,则不需要一直调用上述代码。

相反,只需调用即可 adapter.notifyDataSetChanged();完成工作。

于 2013-08-26T06:35:14.470 回答
1
ArrayAdapter<String> adpt = new ArrayAdapter<String>(Messages.this, android.R.layout.simple_list_item_1,lst);

但我不明白你为什么把所有这些都放在一个处理程序中。

我也看到setContentView两次相同的活动,这不是一个好的设计。

如果您需要更新列表视图,请更新填充列表视图的基础数据并调用notifyDataSetchanged您的适配器。

此外setContentView,每次都初始化视图不是一个好主意

于 2013-08-26T06:35:57.133 回答
1

你应该改变这个

ArrayAdapter<String> adpt = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,lst);

经过

ArrayAdapter<String> adpt = new ArrayAdapter<String>(YourActivity.this, android.R.layout.simple_list_item_1,lst);
于 2013-08-26T06:36:17.127 回答