unity调用 Android 分享图片文字 方法 不需要第三方sdk 兼容android7.0+
生活随笔
收集整理的這篇文章主要介紹了
unity调用 Android 分享图片文字 方法 不需要第三方sdk 兼容android7.0+
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
直接說方法把,在Android Studio中 新建一個工程,新建時選擇Add No Activity,包名跟unity中設置的一樣比如這里用 come.demo.share
在res目錄下新建個文件夾xml,新建file_paths.xml文件內容如下
然后刪除AndroidManifest.xml代碼如下
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.demo.share"><application><providerandroid:name="android.support.v4.content.FileProvider"android:authorities="com.demo.share.fileprovider"android:exported="false"android:grantUriPermissions="true"><meta-dataandroid:name="android.support.FILE_PROVIDER_PATHS"android:resource="@xml/file_paths" /></provider></application> </manifest>現在到java里面新建一個class,注意把這里的包名com.demo.share換成你自己的
ShareContent.java
package com.demo.share;import android.content.Context; import android.content.Intent; import android.net.Uri; import android.support.v4.content.FileProvider;import java.io.File;public class ShareContent {//分享純文本public static void shareTxt(Context context,String txt){Intent sendIntent = new Intent();sendIntent.setAction(Intent.ACTION_SEND);sendIntent.putExtra(Intent.EXTRA_TEXT, txt);sendIntent.setType("text/plain");context.startActivity(sendIntent);}//分享圖片public static void shareImg(Context context,String filePath){File file = new File(filePath);Uri contentUri = FileProvider.getUriForFile(context,"com.entdream.shootingmachine.fileprovider",file);Intent shareIntent = new Intent();shareIntent.setAction(Intent.ACTION_SEND);shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);shareIntent.setType("image/*");shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION| Intent.FLAG_GRANT_WRITE_URI_PERMISSION);context.startActivity(Intent.createChooser(shareIntent, "分享圖片"));} } 接下來就是生成aar供unity調用了,方法參考如下 https://www.cnblogs.com/xtqqkss/p/6387271.html總結
以上是生活随笔為你收集整理的unity调用 Android 分享图片文字 方法 不需要第三方sdk 兼容android7.0+的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 持续暴跌,美股入熊!能否西降东升?
- 下一篇: ubuntu16.04 搭建Jenkin