当前位置: 代码迷 >> Android >> android代码power off 以及特定文件格式的施用
  详细解决方案

android代码power off 以及特定文件格式的施用

热度:70   发布时间:2016-05-01 13:57:28.0
android代码power off 以及特定文件格式的使用

如果想用代码实现power off 目前可能来说只有PowerManager.goToSleep().

但是这个不是标准的vapi'

?

如果你想自定义一个文件名的扩展名或者要制定特定文件 需要

<intent-filter>     <action android:name="android.intent.action.VIEW" />     <category android:name="android.intent.category.DEFAULT" />     <data android:mimeType="*/*" />     <data android:pathPattern=".*\\.xyz" /> </intent-filter>

?android:pathPattern 就是制定特殊的格式

  相关解决方案