HTTPClient in Titanium iPhone or ANDROID. How to check whether you request is...
function sendRequest() { var xhr = Titanium.Network.createHTTPClient(); xhr.onload = function() { if(this.status == 200) { // this becomes true if your request is completed. } }; };...
View ArticleHow to load a PDF in Titanium?
Loading a PDF file in Titanium may be sometimes our requirement for an application. For loading a PDF we need to have a webview inside a scrollview so that it is scrollable also. Take a look at this...
View ArticleHow to get the SMS sent to your emulator within your application? OR Get...
Actually these are done using services in ANDROID. These are called BroadcastReceivers.Your class has to extend the BroadcastReceiver class to get these broadcast events. But note that these services...
View ArticleHow to get notified during an incoming call and get that number inside your...
Hi all……. In today’s tutorial I will show you how to get the incoming phone number inside your application. In many situation we may need this. For this we need to have BoradCastReceivers. Inside this...
View ArticleFancy SrollBar in ANDROID…
Hello all.. ScrollBars are our basic needs in a UI if we have to show a content that do not fit fully into our layout. A normal scrollBar doesn’t look so beautiful, but don’t worry ANDROID is so...
View ArticleFlutter Tutorial – Select an image from Gallery and show in Imageview
For selecting an image from the Gallery or Camera roll in Flutter, we need to include a library in pubspec.yaml file under the dependencies that is present in the root of your project. Demo Video...
View ArticleCarousel in Flutter
Carousels are an awesome way to show a list of images. We will be using a plugin to show the carousel in flutter. Flutter Carousel Watch Video Tutorial Add Plugin To use carousel we need to add...
View Article