Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
63703ee7
U
uni-api
项目概览
DCloud
/
uni-api
通知
679
Star
23
Fork
12
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-api
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
63703ee7
编写于
12月 02, 2024
作者:
杜庆泉
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
waiting view 增加 topPageView参数
上级
1bd91505
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
44 addition
and
41 deletion
+44
-41
uni_modules/uni-prompt/utssdk/app-android/WaitingView.uts
uni_modules/uni-prompt/utssdk/app-android/WaitingView.uts
+16
-13
uni_modules/uni-prompt/utssdk/app-android/showToast.uts
uni_modules/uni-prompt/utssdk/app-android/showToast.uts
+28
-28
未找到文件。
uni_modules/uni-prompt/utssdk/app-android/WaitingView.uts
浏览文件 @
63703ee7
...
...
@@ -63,10 +63,12 @@ export class WaitingView{
private currentHandler: Handler
private hostView:View | null = null
//{"back":"transmit","height":"112px","loading":{"display":"block","height":"55px","icon":"__uniapperror.png","jSONArray":false},"padding":"10px","size":"16px","width":"140px"}
constructor(context?: Activity, style: UTSJSONObject) {
constructor(context?: Activity, style: UTSJSONObject
,view:View
) {
this.context = context;
this.style = style.toJSONObject() as JSONObject
...
...
@@ -79,6 +81,7 @@ export class WaitingView{
this.textView = this.waitingView.findViewById<TextView>(R.id.dcloud_tv_loading)
this.seaparatorView = this.waitingView.findViewById<View>(R.id.dcloud_view_seaparator)
this.mImageView = this.waitingView.findViewById<ImageView>(R.id.dcloud_iv_loading)
this.hostView = view
this.textView.setMaxLines(2)
...
...
@@ -179,7 +182,7 @@ export class WaitingView{
}
let mpop = new PopupWindow(this.waitingView, width.toInt(), height.toInt(), this.mask)
this.mpopWindow = mpop
mpop.showAtLocation(
(this.context?.findViewById<ViewGroup>(android.R.id.content))?.getChildAt(0)
, Gravity.CENTER, 0, 0)
mpop.showAtLocation(
hostView
, Gravity.CENTER, 0, 0)
mpop.setOutsideTouchable(true)
mpop.setOnDismissListener(new WaitingDismissListener())
mpop.setTouchInterceptor(new TouchInterceptorListener(this.mask))
...
...
uni_modules/uni-prompt/utssdk/app-android/showToast.uts
浏览文件 @
63703ee7
...
...
@@ -114,7 +114,7 @@ function makeLoading(style : ShowLoadingOptions, type : string, errMsg : string)
/**
* uni-app
*/
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options)
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options
,UTSAndroid.getTopPageView()
)
toast = alert
alert?.showWaiting();
...
...
@@ -134,7 +134,7 @@ function makeLoading(style : ShowLoadingOptions, type : string, errMsg : string)
const page = pages[pages.length - 1].vm!
const instance = page.$
if (page.$isReady) {
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options)
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options
,UTSAndroid.getTopPageView()
)
toast = alert
alert?.showWaiting();
} else {
...
...
@@ -143,7 +143,7 @@ function makeLoading(style : ShowLoadingOptions, type : string, errMsg : string)
if(onReadyToast.containsKey(page)){
options = onReadyToast.get(page) as UTSJSONObject;
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options)
const alert = new WaitingView(UTSAndroid.getTopPageActivity(), options
,UTSAndroid.getTopPageView()
)
toast = alert
alert?.showWaiting();
...
...
杜庆泉
@shili8889
mentioned in commit
80ed21d2
·
12月 02, 2024
mentioned in commit
80ed21d2
mentioned in commit 80ed21d2dabfcbf6c1a4c84dfa32794ede7b508b
开关提交列表
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录