1. 程式人生 > >Android新增檔案開啟方式,將你的app加入開啟方式

Android新增檔案開啟方式,將你的app加入開啟方式

如何讓自己的軟體出現在開啟方式的列表中呢? 通過設定AndroidManifest.xml檔案即可:

<activity android:name=".MainActivity" android:label="@string/app_name" android:launchMode="singleTask" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<data android:mimeType="text/plain"></data>
</intent-filter>
</activity>

新增第二個<intent-filter>,這樣你的應用程式就會出現在預設開啟列表了

注意需要將mimeType修改成你需要的型別,文字檔案當然就是:text/plain

還有其它常用的如:

  • text/plain(純文字)

  • text/html(HTML文件)

  • application/xhtml+xml(XHTML文件)

  • image/gif(GIF影象)

  • image/jpeg(JPEG影象)【PHP中為:image/pjpeg】

  • image/png(PNG影象)【PHP中為:image/x-png】

  • video/mpeg(MPEG動畫)

  • application/octet-stream(任意的二進位制資料)

  • application/pdf(PDF文件)

  • application/msword(Microsoft Word檔案)

  • message/rfc822(RFC 822形式)

  • multipart/alternative(HTML郵件的HTML形式和純文字形式,相同內容使用不同形式表示)

  • application/x-www-form-urlencoded(使用HTTP的POST方法提交的表單)

  • multipart/form-data(同上,但主要用於表單提交時伴隨檔案上傳的場合)


 
Intent intent = getIntent();

String action = intent.getAction();
if(intent.ACTION_VIEW.equals(action))
{Log.v(intent.getDataString());}

"intent.getDataString()"返回的就是所點選的檔案路徑,但是這裡會有編碼的問題,需要用decode處理一下:

Intent intent = getIntent();
String action = intent.getAction();
if (intent1.ACTION_VIEW.equals(action)) {
    Uri uri = intent.getData();
    String str = Uri.decode(uri.getEncodedPath());}

str就是正確的路徑