Using Android Built in drawables.
This is a simple example showing how to use android built in drawables. Here I am showing only the xml file. Please leave your valuable comments on this post.
This is a simple example showing how to use android built in drawables. Here I am showing only the xml file. Please leave your valuable comments on this post.
This code snippet helps you to open browser in android cocos2D application Call this function anywhere inside your cocos2D project to open the browser with the corresponding URL.
We can create a dialog with custom alert dialog with our xml in android. But for making simple alerts we can make custom alerts through code itself. Here is a simple function for this. Here I am having a Listview and an edittext with two buttons in the alertBox. Please leave your valuable comments on… Read More »
Hello all.. Today I will talk about how to theme your activities the way you want. Besides that android provides many built in themes that you can use instead of all writing it yourselves. One of those kind is making the activity appear like a dialog box. Here is how you do it. After creating… Read More »
Hello all… Recent studies has shown that apps that run on Apple’s iOS crashes more than Google’s Android apps. This is something that people who are involved in computer repair training should be aware of. According to the studies iOS apps crashes more than 3 times as compared to Android apps. These are some of… Read More »
In today’s tutorial I will show how to apply custom theme for your activity in android. Android has several built in themes for applying to your activity but you can also provide your own custom themes for your activity. Now we will start creating an activity with a custom theme applied. Create a fresh project… Read More »
Test
A new feature is coming to your android and blackberry phones which allows you to track your phone if it is lost. please check this link for more information on this.
Hello android lovers, In today’s tutorial I will show you how to 1. Create a text file and save a textfile in your SDCARD in your preferred path. 2. Read the contents from the same file and show it in a TextView. For writing a file we use the FileWriter class and for reading the… Read More »
Hello all… You may already know how to uninstall an android apk through interface in android emulator or device. But there is another way to remove the apk. It is through command line. here is how you do it. First navigate to android tools directory from your command line. Here I have installed android in… Read More »
Hello all.. The latest development in android is that google has removed the menu button from android, instead they provide something called the actionbar like in the Honeycomb devices. Google introduced the ActionBar class as the standard solution to make actions from the user options immediately visible and quick to invoke The ActionBar looks like… Read More »
Hello everyone, Today I will show you a simple trick of scaling the android device through command line. Ofcourse this can be done using the interface, but the otherway is using the command line. Through interface is like this . Through command line Change the scale value and see how your emulator changes. please leave… Read More »
Hello all, In todays tutorial I will show you how to work with sqlite databases in android through command line. Advantages 1. You can browse any number of databases. 2. You can write any queries and execute. First go through these tutorials to get a glance of how to work with sqlite databases in android.… Read More »
Hello Friends Today I will show you how to save data in cocos2D android in a database and reload it when the game starts. This has been always a problem withe game developers for cocos2D android. I will show you a way to save almost any number of data in a database using SQlite in… Read More »
Emulator Keyboard Mapping The table below summarizes the mappings between the emulator keys and and the keys of your keyboard. Emulated Device Key Keyboard Key Home HOME Menu (left softkey) F2 or Page-up button Star (right softkey) Shift-F2 or Page Down Back ESC Call/dial button F3 Hangup/end call button F4 Search F5 Power button F7… Read More »
Please check the LogCat for output. Join the Forum discussion on this post
Hello all….. In today’s post I will show you how to create a single selection list in android. Here is the main.xml Now this line in the java file creates the single choice. setListAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_single_choice, android.R.id.text1, names)); Now this is the full java code
This simple Activity creates a reflection of the provided image. Download the complete source code for above example from here.
Hello all… Today I will show you how to get notified when a video completes playing in android. PLease check this post for playing a video and the resources. First create a folder named “raw” inside the “res” folder and copy a video inside it. Now copy the xml from this link. For listening to… Read More »
Hello everyone Today I will explain how will you call a function that is defined inside the java android code from a webview. For this we need to add a webviewclient in android for the WebView we are adding in the xml. Then we have to register the webviewclient with the WebView we are creating… Read More »
Hello all… I have shown a lot of examples of animations in android. Today I will show you how to show an image transition animation between two images. For that you have to create an xml named “expand_collapse.xml” inside the res/drawable folder. The contents of “expand_collapse.xml” are Now in the main.xml place an imageView to… Read More »
Hello everyone, Today’s example shows how to create a custom layout for your camera preview, that is if you want a custom layout while your camera is opening. This example helps you to achieve this. First create a fresh project and name it CameraCustomLayout and copy this code to CameraCustomLayout.java file. After that create an… Read More »