我有一个{N}页面,有条件地我想创建一个指向页面上某些功能的浮动气泡文本标签。例如"按开始按钮取消"。
有关如何做到这一点的任何帮助。
最好不要修改xml页面文件。
答案 0 :(得分:4)
我发布了一个可以执行您要求的插件只需安装tns plugin add nativescript-tooltip
,然后您可以按如下方式使用
打字稿
import * as frame from "ui/frame";
import {ToolTip} from "nativescript-tooltip";
new ToolTip(frame.topmost().getViewById("someView"),{text:"Some Text"});
的JavaScript
const frame = require("ui/frame");
const ToolTip = require("nativescript-tooltip").ToolTip;
new ToolTip(frame.topmost().getViewById("someView"),{text:"Some Text"});