国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android編程實(shí)現(xiàn)調(diào)用系統(tǒng)分享功能示例

2019-12-12 03:56:03
字體:
供稿:網(wǎng)友

本文實(shí)例講述了Android編程實(shí)現(xiàn)調(diào)用系統(tǒng)分享功能。分享給大家供大家參考,具體如下:

/** * 調(diào)用系統(tǒng)的分享功能 * Created by admin on 15-4-13. */public class ShareActivity extends Activity {  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.share_layout);  }  //分享文字  public void shareText(View view) {    Intent shareIntent = new Intent();    shareIntent.setAction(Intent.ACTION_SEND);    shareIntent.putExtra(Intent.EXTRA_TEXT, "This is my Share text.");    shareIntent.setType("text/plain");    //設(shè)置分享列表的標(biāo)題,并且每次都顯示分享列表    startActivity(Intent.createChooser(shareIntent, "分享到"));  }  //分享單張圖片  public void shareSingleImage(View view) {    String imagePath = Environment.getExternalStorageDirectory() + File.separator + "test.jpg";    //由文件得到uri    Uri imageUri = Uri.fromFile(new File(imagePath));    Log.d("share", "uri:" + imageUri); //輸出:file:///storage/emulated/0/test.jpg    Intent shareIntent = new Intent();    shareIntent.setAction(Intent.ACTION_SEND);    shareIntent.putExtra(Intent.EXTRA_STREAM, imageUri);    shareIntent.setType("image/*");    startActivity(Intent.createChooser(shareIntent, "分享到"));  }  //分享多張圖片  public void shareMultipleImage(View view) {    ArrayList<Uri> uriList = new ArrayList<>();    String path = Environment.getExternalStorageDirectory() + File.separator;    uriList.add(Uri.fromFile(new File(path+"australia_1.jpg")));    uriList.add(Uri.fromFile(new File(path+"australia_2.jpg")));    uriList.add(Uri.fromFile(new File(path+"australia_3.jpg")));    Intent shareIntent = new Intent();    shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);    shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uriList);    shareIntent.setType("image/*");    startActivity(Intent.createChooser(shareIntent, "分享到"));  }}

頁面效果:

 

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android開發(fā)動(dòng)畫技巧匯總》、《Android布局layout技巧總結(jié)》、《Android開發(fā)入門與進(jìn)階教程》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 友谊县| 班戈县| 当阳市| 弥渡县| 邢台县| 雅安市| 西乌珠穆沁旗| 咸宁市| 公主岭市| 葫芦岛市| 许昌县| 越西县| 巴林左旗| 孝昌县| 庆云县| 高清| 馆陶县| 新竹市| 梁河县| 民县| 通州区| 星子县| 彭泽县| 红安县| 武功县| 黑河市| 定安县| 长白| 东光县| 松阳县| 罗田县| 永州市| 宣汉县| 防城港市| 子长县| 余江县| 疏附县| 濉溪县| 沙洋县| 马山县| 都江堰市|