Change Attribution Area in Toast Notification in Windows 10 - delphi

How to change icon near Application Name in Attribution Area in Toast Notification?
I'm using code similar to How to add a text node to a toast notification. Code under link helps change Application Name.
I can change placement images like appLogoOverride, hero or inline, but can not change (main) icon in Attribution area.
Windows 10, Delphi Seattle.

Related

Rate app popup on iOS looks different on two different applications

We implemented in-app rate dialog in two our applications, however one application has cool looking view with text description but another has only icon without text. We use SKStoreReviewController to show this popup and its API has only one method (two if count deprecated) to show popup and doesn't have any customization options. Both application were launched on the same device model with same iOS version differences only in theme settings, as you could see by popup color
How it's possible to turn weird-looking popup to cool-looking with text description on it?

Displaying an extended message balloon (with image / button, etc.)

I know there are already posts about it, but I had a hard time finding anything really effective...
I am developing a small application that displays an balloon tip with a custom caption and icon.
I know how to use the TTrayIcon component and the Shell_NotifyIcon function. But now I have seen this thing (it is displayed when connecting the printer):
It has features like a standard balloon tip (appears and disappears like a balloon and is also displayed in the notification area):
Can anyone give direction on how one can create such a balloon (or a standard window with similar features, by using AnimateWindow and the like?
(I do not need it to appear in the notification area as in the second image)

Components inside a Balloon hint

I'm trying to figure out a way to add a TButton inside a TTrayIcon Balloon Hint.
Is that possible?
Application description and goal:
Basically my software detects when a USB device is connected to the computer
and automatically pops up a balloon hint which notifies the user that
a new device has been connected.
What should happen next is to ask the user "Do you want to execute operation A or operation B?",
and I'd like to give the user fast access to the options directly inside the ballooon hint.
What I have tried:
Googling a lot, but no success, because there is no info about how to access the balloon hint interface in any way.
I am using Delphi XE2 on Windows 8.
TTrayIcon is a wrapper for Shell_NotifyIcon(), which does not support custom controls in its popup notifications.
You will have to create your own popup window. You can use Shell_NotifyIconGetRect() if you want to position it relative to the tray icon. Just be aware that system tray icons can be hidden by the user, so be prepared that you may have to position your popup window without knowing where the icon is located at times.

PhoneGap status bar notification

Does anyone know how to implement a status bar notification for blackberry PhoneGap apps? I mean like when someone receives a notification it should appear as a small image icon on the home screen at the top of the blackberry just as email alerts appear.
To just show an icon with a number you can use the showBannerIndicator which is part of webworks.
e.g.
function notify()
{
blackberry.app.showBannerIndicator('notifyicon.png', 1);
}
https://developer.blackberry.com/html5/apis/blackberry.app.html#.showBannerIndicator
If you want to make it clickable you will need to look at trying to implement the community addon from here which will be a bit more work:
https://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/MessageList
I've successfully used the bannerindicator in a phonegap application, but I havn't tried the MessageList yet.

How to change the List Text colors in windows phone7 app

I submitted my Wp7 app but it was rejected for the reason is
Application content, such as text and visual
elements, must be visible and legible regardless of
the phone theme. For example, if the phone
theme changes from black background to white
background, the text and visual elements of your
application must be visible or legible.
Test Process Required:
1. Navigate to the Settings page in the app list.
2. Tap theme and change Background to 'Dark'.
3. Launch the application.
4. Verify that the text and visual elements of the
application are visible and legible.
5. Navigate back to the theme page under
Settings, and change Background to 'Light'
6. Launch the application.
7. Verify that the text and visual elements of the
application are visible and legible.
actually i am using ListBox in my Xmal page in that i have set baground color Block and font color is white. How to change Font color that when they Change Device Background color in Window phone7..please help me..How to resolve this ..
You could hard code your back and foreground colors in XAML or you could use the WindowsPhone Color resources.
MSDN Windows Phone Resources
To Solve this i showed a MessageBox to the User the first time he starts the application that the app is using his location and what the app is doing with it. Then you need to give an option in the application somewhere to turn the using of his location completely off, i added this to my apps settings page. And you could provide information about why you using location in a separate page and have the setting to turn it on and off there.
The MessageBox and the Turn off setting works my app got certified like this.

Resources