Apple Watch App button in navigation bar - watchkit

I develop a Apple watch app using watch os 2.
Can I add button in "navigation bar" as this image :1.
In this image "Enzo" I would like to be a button.

Nope—WatchKit apps don’t have the ability to add buttons to the navigation / status bar. If you’d like an API for that, you should file an enhancement request.

Related

iOS App display error: Black rectangle artifact beside button

After updating to iOS 13, a black rectangle appears next to a button on the login screen of my app. I'm told it appears for users running iOS 12 as well. This is the artifact:
.
The app was written in Swift 4 using Xcode 11. The artifact appears to be cutting off the normal width of the login button, as if the internal padding was rendered outside the border, so the button looks lopsided.
This is what the login view looks like in Xcode:
Here is the document outline for the login view:
Here are the attribute settings for the Login button (note: the background is an image asset):
Here are the constraints on the button. I notice there are two identical constraints for aligning horizontally in the parent container- could that cause this?
If I install the app directly using Xcode the artifact does not appear, even if I don't make any changes. However, every employee downloads the IPA from an internal app store and they see it. Can anyone suggest a solution?

How to create Status Bar icons for Android

I have created a Xamarin Forms app and have enabled push notifications. The notifications are appearing just fine, but the icon is always just a grey box on the Android version.
I need to create icons for the app that can be displayed in the status bar. I'm not a graphic designer, and just want to display a very simple icon. I read somewhere that if I specify just the -xxhdpi version that Android will automatically resize all icons for smaller screens, but this doesn't seem to be working.
What is an easy way to create the icons I need for -hdpi, -xhdpi, -xxhdpi resolutions?
You can use AndroidAssetStudio.
Android Asset Studio is a web-based set of tools for generating graphics and other assets for Android applications that helps developers create graphic assets with just a few clicks. Currently available asset generators include:
Launcher icons - the visual representation of your app
Action bar icons - are graphic buttons from top application bar and represent the most important actions
Notification icons - is the icon that the system it’s display in the status bar when a new notification appears
Generic icons - are small / contextual icons used in the body of your app
Simple nine-patches - generate graphics elements for different screen densities
App Theme - create simple and attractive custom action bar style

UWP - Change App Icon dynamically

I recently received a real headache problem for UWP apps.
Basically I would like to change the main Icon of my app depending on an action.
Let's say I would like to change the App Icon if a certain user logs into my app so that he does not see default App Icon after closing the app.
I found different links which refer to work on tiles, which works perfectly fine. But I did not come up with a solution to change the App's Icon.
Is there a way like in iOS to use AlternateIcons or in Android to just call an Alias?
Tiles are technically the icons in the UWP world. You can update the live tiles as you desire with notifications and they can provide richer visual surface than classic icons.
For the App List and Taskbar icons however, those are just static and you cannot change them at runtime. They come from the Package.appxmanifest Visual Assets section, so you have to define them ahead of time.
You however use Badge notifications to display simple info next to the app icon in the Task bar as well as on the main app tile.

Flex Native Local Notifications

I've an air app that needs to put a notification on the status bar on android devices like "2 New Tips" etc. Rest everything works fine, but I am not able to find something that can put a notification on the status bar. A simple demo that puts some text on the status bar on a button click.
I really need it, as this is the last thing left in my app. Please help!!
you'll need to make Native Extensions. http://www.adobe.com/devnet/air/articles/ane-android-devices.html

Safari in iOS - share using

There is a "share" button in the bottom of the screen in Safari and I am wondering if it possible to add a custom sharing option for that?
For example if user installed an app (let's say App1) then when you click on that "share" button there will be "App1" in the share options list. App1 should register itself somehow as such that is able to do that. I know that this is possible in Android.

Resources