这个没有问题
am start -n com.android.settings/com.android.settings.Settings &
am start -n com.android.settings/com.android.settings.SoundAndDisplaySettings &
am start -n com.android.music/com.android.music.MediaPlaybackActivity -d file:///a.ogg &
其实就是去文件packages/apps/Settings/AndroidManifest.xml中观看
package="com.android.settings"
然后所有activity的名字都可以使用上面的am start -n启动了
android:taskAffinity="com.android.settings"
android:clearTaskOnLaunch="true"
android:launchMode="singleTop">
android:label="@string/sound_and_display_settings_title"
android:clearTaskOnLaunch="true"
>
拨电话号码
am start -a android.intent.action.DIAL -d tel:0800000123 &
直接打该号码(需要将packages/apps/Phone/AndroidManifest.xml中含有
"android.intent.action.CALL"的
所在activity即"OutgoingCallBroadcaster"
包含的android:permission="android.permission.CALL_PHONE"去掉才行
)
am start -a android.intent.action.CALL -d tel:0800000123 &
上网
am start -a android.intent.action.VIEW -d &
发邮件
am start -a android.intent.action.SENDTO -d mailto:gliethttp@123.com &
显示地图
am start -a android.intent.action.SENDTO -d "geo:38.899533,-77.036476" &
am start -a android.intent.action.VIEW -d file:///a.ogg -t audio/* &
am start -a android.intent.action.VIEW -d file:///sdcard/chujia.mp3 -t audio/* &
am start -a android.intent.action.VIEW -d file:///b.mp4 -t video/* &
am start -a android.intent.action.VIEW -d file:///c.jpg -t image/* &
am start -D -d file:///chujia.mp3 -t audio/* &
am start -a android.intent.action.SEARCH -d file:///chujia.mp3 -t audio/* &
这里的am -a参数表示执行一个action动作,后面的audio/*表示数据mime类型,
Android将自动查找mime类型对应的所有文件中和-d指定一致的文件,
同样mime类型具体数值可以去文件packages/apps/Music/AndroidManifest.xml中观看
阅读(14550) | 评论(0) | 转发(0) |