这是我的代码。问题是进度对话框没有显示,所以文本视图上的默认文本显示,一段时间后 URL 内容被加载到其中。我怎样才能解决这个问题?
tv = (TextView) findViewById(R.id.textView1);
pd = new ProgressDialog(MainActivity.this);
Ion.with(getBaseContext()).load("https://google.com")
.progressDialog(pd)
.asString()
.setCallback(new FutureCallback() {
@Override
public void onCompleted(Exception arg0, String arg1) {
// TODO Auto-generated method stub
tv.setText(arg1);
}
});