我是安卓新手。我正在尝试构建一个简单的 android 应用程序:用户单击按钮并出现一个进度对话框 5 秒钟。我使用 ProgressDialog.show() 并遇到了上下文参数的问题。这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btnDialog2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/btnDialog2" />
</LinearLayout>
这是我的代码:
public class Dialog22Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnDialog2 = (Button)findViewById(R.id.btnDialog2);
btnDialog2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
final ProgressDialog dialog = ProgressDialog.show(getBaseContext(),
"Progress dialog", "Loading...", true);
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(5000);
dialog.dismiss();
} catch (InterruptedException e) {
}
}
}).start();
}
});
}
}
如果我将 ProgressDialog.show() 的上下文参数从 getBaseContext() 更改为 v.getContext() 我的程序将正常运行。所以我想问这里的上下文参数是什么意思?感谢您的帮助。