public class OpenPdf extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button button = (Button) findViewById(R.id.OpenPdfButton);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
File file = new File("/sdcard/example.pdf");
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(OpenPdf.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
}
}
});
}
}
在Activity中的onDestroy中完成以下代码
finish(); Process.killProcess(Process.myPid());
好了 使劲地干掉它吧!
1 。 ACTION_DIAL
比如
final Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(Uri.parse("tel://"+phoneNumber));
运行效果是拨号界面,而且已经把你的phoneNumber播上去了,
按下通话绿键就可以播出
2。 ACTION_CALL
比如
final Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel://"+phoneNumber));
运行之后目标号码直接播出,开始等待对面接电话了。
还有个ACTION_VIEW
不比如了,如果intent是tel://1234这种形式,显示是跟ACTION_DIAL一样的。
我这里遇到一个bug。 一个intent出去会有两个电话。需要挂断两次。。。
百思不得其解。。。救命阿。。。