首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

抉择发送文件 ACTION_SEND 直接跳转到WLAN直连发送(WifiDirect)

2013-08-09 
选择发送文件 ACTION_SEND直接跳转到WLAN直连发送(WifiDirect)Intent intentnew Intent()intent.setActi

选择发送文件 ACTION_SEND 直接跳转到WLAN直连发送(WifiDirect)
Intent intent=new Intent();intent.setAction(Intent.ACTION_SEND);intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/sdcard/yanyojun.png")));intent.setClassName("com.android.wfd", "com.android.wfd.opp.WfdOppLauncherActivity");intent.setType("image/*");startActivity(intent);

?呵呵,终于实现了。

?转载请注明原文地址:http://bajiewuneng.iteye.com/admin/blogs/1917324

热点排行