嗨,我正在开发使用网格视图的 android 应用程序。我想动态更新网格项。我的网格项包含一个标题文本。我试图这样做,但它不适合我。
((Activity)context).runOnUiThread(new Runnable()
{
public void run()
{
Debug.print("this is update progress inside thread ...");
owner.setText("Uploading...");
invalidate();
requestLayout();
}
});
所以在上面的代码中它的打印调试语句。但不更新网格项内的我的所有者文本。
我也试过这个...
Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
owner.setText("Uploading...");
}
};
handler.sendEmptyMessage(0);