gpt4 book ai didi

android - 使用 Ionic 的自定义通知模板

转载 作者:可可西里 更新时间:2023-11-01 06:17:11 29 4
gpt4 key购买 nike

我想使用 ionic 框架显示嵌入按钮(就像音乐播放器控件)的自定义通知,允许用户在单击通知时进行选择。

我找不到关于此的任何官方(或非官方)文档,我什至不知道这是否可能。

有没有人成功地使用 ionic 框架创建了自定义通知模板?

最佳答案

我正在使用带有自定义模板的 ionicPopup。

这是一个 CodePen:http://codepen.io/nicon-dev/pen/EPYeGJ

或者:

angular.module('ionicApp', ['ionic'])

.controller('MyCtrl', function($scope, $ionicPopup) {

$scope.openPopup = function() {

var customTemplate =
'<ion-toggle>enable</ion-toggle>' +
'<label class="item item-input"><input type="text" placeholder="your address"></label>';

$ionicPopup.show({
template: customTemplate,
title: 'alternative location',
subTitle: 'select this option if GPS is unavailable',
buttons: [{
text: 'Cancel',
//type: 'button-positive',
onTap: function(e) {

}
}, {
text: '<b>Save</b>',
type: 'button-positive',
onTap: function(e) {

}
}]
});

}
});
<html ng-app="ionicApp">

<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<title>Ionic Pull to Refresh</title>

<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>

</head>

<body ng-controller="MyCtrl">

<ion-header-bar class="bar-positive">
<h1 class="title">Awesome App</h1>
</ion-header-bar>

<ion-content class="padding">
<button class="button button-balanced" ng-click="openPopup()">open popup</button>
</ion-content>

</body>

</html>

$ionicPopup 文档:HERE

希望这对您有所帮助。

关于android - 使用 Ionic 的自定义通知模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34040591/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com