How to list all the fonts available in the iOS platform?
A variety of fonts are available in iOS platform. The following code snippet shows how to list all such fonts and add the font names into an array.
View ArticleHow to display PHP setup and environment variables?
In order to display PHP setup, configuration and environmental variables simply create a php page and execute the phpinfo command. It will display all the relevant information about PHP as output in...
View ArticleHow to load image from PhotoGallery into a CCSprite?
SinppetThe Asset Library is used here, so add import.#import "AssetsLibrary/AssetsLibrary.h" CCSprite *playPhoto; CCLOG(@"Photo %@",dataManager.playerPhoto);// check if the URL is an asset URL from...
View ArticleHow to change font to bold and color of a UILabel?
SnippetThe following snippet provides a utiity method to change the label font from bold to regular along with that it changes the color to red or black respectively
View ArticleWhat are the various Enums used by the Facebook iOS SDK?
The following are the various Enumeration defined and used by the Facebook iOS SDK. Please review these for full understanding of how the SDK behaves for various operations./* * Constants used by...
View ArticleHow to load an remote image as a Drawable in Android?
Loading an remote image from a online server accessible via a URL as Drawable is very straightforward.// Utililty Methodpublic static Drawable loadImageAsDrawable(String url) { try { // open...
View ArticleHow to allow multiple line text in EditText view in Android?
The EditText widget by default is single line. In order to allow mutiple lines modify and customize the widget definition in the layout file as below:<EditText android:singleLine="false"<!--...
View ArticleHow to show Alert Dialog in Java Swing?
Displaying a simple message box or an alert dialog with an Ok button can be done with just one line of code as show below:A) Without a JFrameJOptionPane.showMessageDialog(null, "Message goes...
View ArticleHow do you create a simple Swing based Window with Frame?
importjava.awt.EventQueue; importjavax.swing.JFrame; publicclass MainWindow { privateJFrame frame; /** * Launch the application. */ publicstaticvoid main(String[] args){...
View ArticleHow to check the version of MySQL database using Python?
#!/usr/bin/python# -*- coding: utf-8 -*- import MySQLdb as mdbimport sys con = None try: con = mdb.connect('localhost','username', 'password','dbname'); cur = con.cursor()...
View ArticleHow to remove all files of a particular type from a directory in iOS?
Lets say you want to remove(delete) all the files of a particular extension say PNG from the Documents folder of the app. We can use the following code snippet.NSString*fileExt =@"png";</p>
View ArticleHow do you hide an ImageButton in Android?
In order to hide the button, call the setVisible method with either one of two argumentsimageButton.setVisible(View.INVISIBLE)OR imageButton.setVisible(View.GONE);
View ArticleHow to build simple Hashmap cache in Android?
The following snippet shows how to build a simple Bitmap Cache in Android:import java.util.HashMap;import android.graphics.Bitmap;// TODO: Auto-generated Javadoc/** * The Class ImageMemoryCache....
View ArticleHow to check if a file is an Image in Android using FileFilters?
In order to check if file is an Image, one can check for the file extension (jpg, png, etc.) using FileFilter as shown below:packagecom.livrona.apps.sikh.wallpapers;...
View ArticleHow do you center an Image to display in a Splash Page in Android?
Generally the splash page displays an image of the App on launch of the app. Most of time its just an single image that is intended to be displayed.Depending of the size of image and device it runs, it...
View ArticleHow to download and store file contents from Remote location on the SD Card?
The following functions fetches the file contents from a remote location, stores it in a given directory with a given file name on the SDCard of the device
View ArticleHow to generate a random number in CSharp?
In order to generate a random number between two numbers, use the Next Function of the Random class as shown below:Example :
View ArticleHow to create 2D Canvas in HTML5 using Javascript?
SnippetThe following snippet shows how to create a div called as canvas (can be any name) and then in javascript we get the handle to canvas by calling document.getElementById method. Finally we get...
View Article