[java]
package com
import java
import android
import android
import android
import android
import android
import android
public class MainActivity extends Activity {
private Button btn;
private ProgressDialog pg;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super
setContentView(R
btn=(Button)findViewById(R
btn
{
public void onClick(View view)
{
final CharSequence Body=
final CharSequence Title=
pg=ProgressDialog
new Thread()
{
public void run()
{
try
{
sleep(
}
catch(Exception e)
{
e
}
finally
{
pg
}
}
}
}
})
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present
getMenuInflater()
return true;
}
}
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26108.html