Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
ee7e62aa
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
ee7e62aa
编写于
12月 11, 2023
作者:
W
wanganxp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善file示例;补充截图分享示例
上级
70d47a8f
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
398 addition
and
318 deletion
+398
-318
pages/API/get-file-system-manager/get-file-system-manager.uvue
.../API/get-file-system-manager/get-file-system-manager.uvue
+346
-293
pages/API/storage/storage.uvue
pages/API/storage/storage.uvue
+2
-2
pages/template/share/share.uvue
pages/template/share/share.uvue
+50
-23
未找到文件。
pages/API/get-file-system-manager/get-file-system-manager.uvue
浏览文件 @
ee7e62aa
此差异已折叠。
点击以展开。
pages/API/storage/storage.uvue
浏览文件 @
ee7e62aa
...
@@ -40,10 +40,10 @@
...
@@ -40,10 +40,10 @@
<view class="uni-padding-wrap">
<view class="uni-padding-wrap">
<view class="uni-btn-v">
<view class="uni-btn-v">
<button class="uni-btn btn-getStorageInfoASync" type="primary" @tap="getStorageInfo">
<button class="uni-btn btn-getStorageInfoASync" type="primary" @tap="getStorageInfo">
获取存储概述-异步
获取存储概述
信息
-异步
</button>
</button>
<button class="uni-btn btn-getStorageInfoSync" @tap="getStorageInfoSync">
<button class="uni-btn btn-getStorageInfoSync" @tap="getStorageInfoSync">
获取存储概述-同步
获取存储概述
信息
-同步
</button>
</button>
</view>
</view>
<text>{{ storageInfo }}</text>
<text>{{ storageInfo }}</text>
...
...
pages/template/share/share.uvue
浏览文件 @
ee7e62aa
<template>
<template>
<view>
<view id="viewshot">
<button class="button" @click="shareText('https://uniapp.dcloud.io/uni-app-x','分享到')">分享</button>
<button class="button" @click="shareText('https://uniapp.dcloud.io/uni-app-x','分享到')">分享文本</button>
</view>
<button class="button" @click="shareSnapShot">指定view截图并分享</button>
</view>
</template>
</template>
<script>
<script>
import Intent from 'android.content.Intent';
import Intent from 'android.content.Intent';
import File from 'java.io.File';
export default {
export default {
data() {
data() {
return {
return {
}
}
},
},
methods: {
methods: {
shareText(text:string,title:string){
shareText(text : string, title : string) {
const context = UTSAndroid.getUniActivity()!;
const context = UTSAndroid.getUniActivity()!;
const intent = new Intent(Intent.ACTION_SEND)
const intent = new Intent(Intent.ACTION_SEND)
intent.setType("text/plain");
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, text);
intent.putExtra(Intent.EXTRA_TEXT, text);
context.startActivity(Intent.createChooser(intent, title));
context.startActivity(Intent.createChooser(intent, title));
// 这里是简单的文本分享示例,如需分享文件图片,需要使用fileProvider
// 这里是简单的文本分享示例,如需分享文件图片,需要使用fileProvider
},
},
}
shareSnapShot() {
}
uni.getElementById("viewshot")?.takeSnapshot(
{
success: function (res) {
// 打印截图文件临时路径
console.log(res.tempFilePath)
const context = UTSAndroid.getUniActivity()!;
const intent = new Intent(Intent.ACTION_SEND)
intent.setType("image/*");
let file = new File(res.tempFilePath)
const uri = UTSAndroid.getFileProviderUri(file)
intent.putExtra(Intent.EXTRA_STREAM, uri);
context.startActivity(Intent.createChooser(intent, "分享到"));
},
fail: function (res) {
console.log(res)
uni.showToast({
icon: 'error',
title: '截图失败'
})
}
}
)
},
}
}
</script>
</script>
<style>
<style>
.button {
.button {
margin: 30rpx;
margin: 30rpx;
}
}
</style>
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录