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。