在Android上的tabcontent中打开文档

时间:2012-08-20 08:42:34

标签: android android-tabhost

在代码下方,我使用group在TabHost上的tabcontent中显示活动:

File file = new File(FilePath);
String mimetype = mime_type(FileName);

Intent it = new Intent(Intent.ACTION_VIEW);
it.setDataAndType(Uri.fromFile(file), mimetype);
it.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);  
Window w = group.getLocalActivityManager().startActivity("Docaument", it);  
View view = w.getDecorView();  
group.setContentView(view);

我想让文档阅读器应用程序的活动放在tabcontent中 但不是全屏 我该怎么做?

0 个答案:

没有答案