日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

unity调用 Android 分享图片文字 方法 不需要第三方sdk 兼容android7.0+

發布時間:2025/4/5 Android 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 unity调用 Android 分享图片文字 方法 不需要第三方sdk 兼容android7.0+ 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

直接說方法把,在Android Studio中 新建一個工程,新建時選擇Add No Activity,包名跟unity中設置的一樣比如這里用 come.demo.share
在res目錄下新建個文件夾xml,新建file_paths.xml文件內容如下

<?xml version="1.0" encoding="utf-8"?> <paths><files-pathname="files"path="/"/><cache-pathname="cache"path="/"/><external-pathname="external"path="/"/><external-files-pathname="external_file_path"path="/"/><external-cache-pathname="external_cache_path"path="/"/> </paths>

然后刪除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+的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。