0

我有一个由按钮和标签组成的活动。按钮单击上的方法检索当前位置并使用该区域更新 textview 的文本。我想知道如何在单击按钮时将文本视图的文本暂时更改为“加载位置”,并在加载位置时将其更新到位置区域。

如何实现它?

4

1 回答 1

0

通过线程尝试以下操作:

public void setLocationText(){

    //Set text to Loading... text in textview   

    final Handler mHandler = new Handler();
    final Runnable mUpdateResults = new Runnable() {
    public void run() {
            //Set location text in textview         
       }
    };
    new Thread() {
    @Override
    public void run() {
        //Get the required location text
        mHandler.post(mUpdateResults);
        }
    }.start();
}
于 2013-08-25T18:15:20.323 回答