1. 请问安卓版的powerpoint能不能或怎样做可以自动播放的幻灯片
我觉得Wps有这种功能。WPS的演示功能非常强大。不但能自动播放幻灯片,还有还可以把幻灯片通过录屏的方式转换成视频。转换后的视频,可以在网络或微信上观看,或传播。建议您试一试,效果比powerpoint好很多。
2. android 代码打开ppt文件有什么办法
工具/原料
Android
android 代码打开ppt文件有什么办法
1
很简单,通过调用系统的intent,我们可以打开各种文件,不熟悉的朋友可以了解下action、datatype、uri的相关知识。
通用方法如下:
2
public static Intent openFile(String filePath){
File file = new File(filePath);
if(!file.exists()) return null;
/* 取得扩展名 */
String end=file.getName().substring(file.getName().lastIndexOf(".") + 1,file.getName().length()).toLowerCase();
/* 依扩展名的类型决定MimeType */
if(end.equals("m4a")||end.equals("mp3")||end.equals("mid")||
end.equals("xmf")||end.equals("ogg")||end.equals("wav")){
return getAudioFileIntent(filePath);
}else if(end.equals("3gp")||end.equals("mp4")){
return getAudioFileIntent(filePath);
}else if(end.equals("jpg")||end.equals("gif")||end.equals("png")||
end.equals("jpeg")||end.equals("bmp")){
return getImageFileIntent(filePath);
}else if(end.equals("apk")){
return getApkFileIntent(filePath);
}else if(end.equals("ppt")){
return getPptFileIntent(filePath);
}else if(end.equals("xls")){
return getExcelFileIntent(filePath);
}else if(end.equals("doc")){
return getWordFileIntent(filePath);
}else if(end.equals("pdf")){
return getPdfFileIntent(filePath);
}else if(end.equals("chm")){
return getChmFileIntent(filePath);
}else if(end.equals("txt")){
return getTextFileIntent(filePath,false);
}else{
return getAllIntent(filePath);
}
}
3
//Android获取一个用于打开APK文件的intent
public static Intent getAllIntent( String param ) {
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri,"*/*");
return intent;
}
4
//Android获取一个用于打开APK文件的intent
public static Intent getApkFileIntent( String param ) {
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri,"application/vnd.android.package-archive");
return intent;
}
//Android获取一个用于打开VIDEO文件的intent
public static Intent getVideoFileIntent( String param ) {
Intent intent = new Intent("android.intent.action.VIEW");
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("oneshot", 0);
intent.putExtra("configchange", 0);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "video/*");
return intent;
}
//Android获取一个用于打开AUDIO文件的intent
public static Intent getAudioFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("oneshot", 0);
intent.putExtra("configchange", 0);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "audio/*");
return intent;
}
//Android获取一个用于打开Html文件的intent
public static Intent getHtmlFileIntent( String param ){
Uri uri = Uri.parse(param ).buildUpon().encodedAuthority("com.android.htmlfileprovider").scheme("content").encodedPath(param ).build();
Intent intent = new Intent("android.intent.action.VIEW");
intent.setDataAndType(uri, "text/html");
return intent;
}
//Android获取一个用于打开图片文件的intent
public static Intent getImageFileIntent( String param ) {
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "image/*");
return intent;
}
//Android获取一个用于打开PPT文件的intent
public static Intent getPptFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "application/vnd.ms-powerpoint");
return intent;
}
//Android获取一个用于打开Excel文件的intent
public static Intent getExcelFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "application/vnd.ms-excel");
return intent;
}
//Android获取一个用于打开Word文件的intent
public static Intent getWordFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "application/msword");
return intent;
}
//Android获取一个用于打开CHM文件的intent
public static Intent getChmFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "application/x-chm");
return intent;
}
//Android获取一个用于打开文本文件的intent
public static Intent getTextFileIntent( String param, boolean paramBoolean){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (paramBoolean){
Uri uri1 = Uri.parse(param );
intent.setDataAndType(uri1, "text/plain");
}else{
Uri uri2 = Uri.fromFile(new File(param ));
intent.setDataAndType(uri2, "text/plain");
}
return intent;
}
//Android获取一个用于打开PDF文件的intent
public static Intent getPdfFileIntent( String param ){
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(param ));
intent.setDataAndType(uri, "application/pdf");
return intent;
}
3. 安卓系统如何使用PPT
1.5以上的系统可以找到很多,word、excel和ppt可以用Kingsoft Office(金山的wps),Documents To Go,google doc,open office,quick office……太多了
4. 安卓系统的PowerPoint里没有我想要的字体,怎么添加字体进去
去网上下字体,双击就能添加到字体库就行了。
5. 安卓手机怎么打开PPT文件。
安卓手机打开PPT文件的方法:
在安卓手机上下载安装OFFICE软件,例如:Polaris
Office,下载安装的方法(以三星手机为例):
1、下载安装360手机助手;
2、打开360手机助手,在搜索栏里输入Polaris
Office,点软件旁相应的下载按钮。
6. ppt是否可以在手机安卓系统打开
1.首先打开360手机助手(如果你的电脑上装的是其他手机助手,可以打开它)。点击“找软件”,输入“office”。点击软件搜索。
2.此时所列出来的就是,安卓手机上的office办公软件了,可以根据平分高的,选择下载。这里,本人推荐documents
to
go。
3.documents
to
go占用内存小,功能十分强大,可以打开包括文档格式的doc、电子表格的xls以及幻灯片格式的ppt。另外,还可以打开pdf格式以及rar压缩格式等等。至于其他的txt、rtf格式等就不在话下了。
7. Android智能手机支持office办公软件吗(Word、Excel、PowerPoint)
Yes,可以,不然我也不会买了。
word,excel,powerpoint都可以查看编辑,能新建...一般用不到...
手机编辑貌似有些不同,但不影响电脑上继续使用...
可以用:doc to go ,office套件,quick office,都可以,推荐doc to go,也就是DTG,
pdf,有ezpdf,replipdf,还有官方版的。
但pdf好像不能编辑。
txt就不用说了吧,哈哈
8. 安卓手机怎么看PPT
安卓手机想要查看PPT格式的文件,需要在手机的应用市场搜索下载办公软件,安装完成后可以使用软件打开进行查看。
所示工具:WPS工具版
步骤:
第一步,在手机的应用市场搜索下载安装WPS手机版,如图所示。
9. 安卓幻灯片制作软件
安卓系统制作幻灯片(PPT)的软件有:
Microsoft Office for android;
WPS 安卓版;
quick office 安卓版。
使用方法:
在应用市场上搜索安卓版office软件,下载并安装;
之后运行该软件,点击【新建】-【powerpoint】即可。
10. 安卓手机有可以播放ppt的软件吗
安卓智能机是可以下载播放ppt文件的软件的,具体方法为:
1、在安卓市场或者其他app商城下载wps等ppt播放软件。
2、安装后在设置里可以导入或下载ppt。
3、也可以自己新建制作ppt。