For showing emojies I am using emoji_picker package, but still emojies arn't IOS emojies. I want use IOS emojies. How can I do it?
Apple protected their emojis and fonts from being used on Android, and anywhere else for that matter, so I don't think there's any legal way to use them in your app. Even Whatsapp had to stop using them.
This article explains it.
Related
I didn't find anything regarding to my question, so Im happy about any advice.
(There is no way to show any code which would make sense)
I just finished my app which I want to release now in android and iOS app store.
I made the app with the Material Widgets but it's also of course running on my iOS device. im wondering what exactly do I have to do now to get my app on iOS app store.
Do I need to change everything to Cupertino Widgets or can I also get it published without changing everything? Is there any guide or something execept the iOS guidelines?
Thank you for your help!
what exactly do I have to do now to get my app on iOS app store.
Relax! And publish your app without any fear. It doesn't matter if you use Cupertino Widgets or Material, the thing that matters is your app should follow Apple guidelines (which doesn't mention anything about these widgets)
Is it possible to ask Siri to push buttons in the app with the text to speech?
I mean, I have a calculator and pushing the button of "dictation" Siri should be able to understand to push + button instead of just write inside the lable the text.
Thank you!
Siri cannot be used inside apps. Moreover, you can only use Siri for handling intents that are part of the SiriKit framework, which is quite limited at the moment.
VoiceOver is perfectly capable of what you need to do. It was designed for navigating through an app with voice commands as part of the Accessibility framework.
The Speech framework as suggested by others is not available in watchOS and wasn't really designed for voice navigation.
You will need to use Speech framework for that. It would not be possible with Siri. You can go through Apple documentation for that.
I am wondering how can I open the send SMS application by using a web control of a HTML5 page on Android and iPhone. I want to use the device native SMS sending app, with a prepopulated value from the web.
Further to other answers I can confirm that smsto:555:bodytext does not work on an iPhone running iOS5.
What does work (and I've tested it) on Android is the format:
sms:444?body=hello
Example:
Tap to say hello!
On iPhone the ?body=hello will prevent it working at all, and you should use just sms:555 instead.
sms:555
Example
Tap to text us!
I have tested the below and it works:
Using HTML Anchor tag:
Subscribe
Using JavaScript:
window.open('sms:111?body=SUBSCRIBE', '_self');
With Android 3.0 SDK Google has started exposing API in HTML5 for device access. An example is listed here. It may not be enough for what you seek to do.
I dont know enough about iphone to advise either way.
I am developing an App using Titanium for iPhone and Android. I created a button and a label and textfield. It looks good in iPhone but is scattered in Android.
I think I have to adjust the each of the control's position. But this would be a big overhead.
Is there any alternative mechanism there by which we can have controls correctly placed both in iphone and Android?
You should take a look at the guide for Designing the User Interface. With each new version of Titanium Mobile, the platform becomes more consistent between the various supported platforms. You really should not need to maintain separate codebases.
First of all don't go for same look and feel. iOS and Android are totally different OS. In Titanium you don't have many controls which are available for iOS.
Let the look and feel be different for Android, don't make it iPhonish.
http://wiki.appcelerator.org/display/guides/Designing+the+User+Interface
Though their docs are not maintained properly. I would suggest you to use some cool graphics which can enhance the look and feel of Application.
I created a button and a label and textfield. It looks good in iPhone but is scattered in Android.
It should not be, post your code. The look and feel might be different, but it should not be scattered.
I want to used the particular fonts for my application. But I don't how can use that font that are in the iPhone SDK library.
Any idea how can I do this ?
By the way I want to use hindi and punjabi fonts in it.
The FontLabel open source project provides a means of drawing your own .ttf fonts on the iPhone.
There is currently no official way to do this; but given the presentations of iWork on the iPad, it's possible that the 3.2 SDK adds this.
Edit: Assuming Jasarien is right about this; you'd probably be better off developing for iPhone OS 3.2; as you'll need an iPhone Dev Central membership to publish your applications at any rate; you might as well get started right away.