我正在尝试显示来自我的观看面的通知,因为我想在用户首次打开表盘时显示其他信息。
这类似于与LG G Watch R一起安装的GMT表盘,要求用户向左滑动以选择时区。
此代码似乎对我不起作用:
var propertyItems = from x in _context.Db.tbl_BranchProperty
where x.BranchId == BranchId && x.ClientId == clientId
select x;
foreach (var propertyItem in propertyItems)
{
这是从Android Wear的一个例子中复制的(没有在表盘示例中使用,只是一个普通的磨损应用程序)
答案 0 :(得分:0)
您很可能错过了该图标,您需要指定Android图标以显示您的通知。尝试指定文档中提到的示例的所有内容:
Notification noti = new Notification.Builder(mContext)
.setContentTitle("New mail from " + sender.toString())
.setContentText(subject)
.setSmallIcon(R.drawable.new_mail)
.setLargeIcon(aBitmap)
.build();