Can I view cell-id/lac information with Titanium?
Please provide answers for both iphone & android.
Any module please provide with link if possible,
Many Thanks
Related
I want to implement a scheduled reminder in a Food/Eating application created in Xamarin Forms (android & ios), that will be displayed at a precise hour on my phone.
Also I want, if it's possible (but I think somehow should be done...), the reminders to be displayed even if the application is not opened. I know that I have some applications installed on my phone, and even if they are closed, the reminders are still displayed.
Could you please help with this topic? I have done some research on the internet but I couldn't found anything that works...
Thank you in advance!
Regards!
you should use AlarmManager in android, please refer to alarm-manager-example.
I am new to auto layout, I want to develop app which is compatible from iPhone 4s(3.5 inch) to iPhone 7plus(5.5 inch).
I have a form of several fields which i want to show without using scroll.
Can someone please help me?
Thanks in advance.
Image preview of both devices
You want your layout to look good on every device so I would suggest testing it on every device.
I am newbie in Xamarin, and Iwould like to have a Google login in my new app with Xamarin Forms.
What is the right way? Is there any updated tutorial or video to guide? Where to start?
thanks
Apart from the link mentioned by #JamesMontemagno (he is the best!), you can watch the video by Houssem Dellai for the same.
There is a also Xamarin cross-platform component for the same.
Video: https://youtu.be/AgFIsVr26zg
GitHub: https://github.com/HoussemDellai/Google-Login-Xamarin-Forms/tree/master/GoogleLogin/GoogleLogin/Views
Hope it helps. Let me know.
I've been trying to implement this (https://github.com/tonymillion/Reachability/) into my iOS iPhone app for 4 hours. I've seen other questions on SO about it, but none explicitly show how to implement the code. Can someone please help?
All I want to do is show an alert if they are not connected (or lose connectivity) to the network (WiFi or Cellular).
Can someone PLEASE tell me what code to put where? Thanks SOOO much! I can post code or anything if needed.
Have a look at Apple reachability sample code here :
http://developer.apple.com/library/ios/#samplecode/Reachability/Listings/Classes_ReachabilityAppDelegate_m.html#//apple_ref/doc/uid/DTS40007324-Classes_ReachabilityAppDelegate_m-DontLinkElementID_4
I hope that will be helpful,if you need to ask something, put it in the comment and I'll edit my answer.
I just start to work with appcelerator and I haven't found a good layout tutorial yet.
At the moment I try to show a mapview with a specific location. Has anybody an example or a good pointer on how to do this?
Download the KitchenSink which is mentioned on the Getting Started page. It has several hundred examples on how to use the various Titanium based APIs - including MapViews.
Here's a simple example
var mapview = Titanium.Map.createView({
mapType: Titanium.Map.STANDARD_TYPE,
region:{latitude:33.74511, longitude:-84.38993, latitudeDelta:0.5, longitudeDelta:0.5},
animate:true,
regionFit:true,
userLocation:true
});
win.add(mapview);