今天,简单讲讲android里如何将自己的app添加进入文件的打开方式。
最近因为换租房的原因,状态很不好。今天尝试写点android的代码的内容。其实很简单,我们只需在AndroidManifest.xml做一些修改,然后进行处理即可。
如何让自己的软件出现在打开方式的列表中呢? 通过设置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(同上,但主要用于表单提交时伴随文件上传的场合)
注册之后,当点击文档的打开方式时,就会在弹出的应用程序里有我们注册的app,然后只需接收数据进行处理即可。具体接收的代码如下:
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就是正确的路径
简单讲讲,其实将app注册进入文件的打开方式里,就是添加intent-filter,其中action 为“android.intent.action.VIEW”,是打开文件时android会发送的广播,然后根据自己处理的文件类型设置mimeType,比如文本文件当然就是:text/plain。具体的上面都很清楚。关于mimeType,多用途互联网邮件扩展(MIME,Multipurpose Internet Mail Extensions)是一个互联网标准,这个我会专门写一篇博客进行讲解。
android 将app添加进入文件的打开方式就讲完了。
就这么简单