!--
google_ad_client = "ca-pub-4378340310740210";
/* rectangle-mobengineers */
google_ad_slot = "3228124274";
google_ad_width = 336;
google_ad_height = 280;
// Using existing IDE
Step 1: Setting Up the JDK
Download JDK from
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1637583.html
Step...
Wednesday, December 26, 2012
December 26, 2012
Setting Up Android App Development
Sunday, December 16, 2012
December 16, 2012
Shasidhar googlegroups jobs
By Entrepreneur & Financial Planning
android jobs, fresher jobs, ios jobs, iphone jobs, it jobs, jobs, jobs in bangalore, jobs in hyderabad, jobs in india, windows jobs

!--
google_ad_client = "ca-pub-4378340310740210";
/* rectangle-mobengineers */
google_ad_slot = "3228124274";
google_ad_width = 336;
google_ad_height = 280;
//
-->
document.getElementById('forum_embed').src =
'https://groups.google.com/forum/embed/?place=forum/help_together'
+ '&showsearch=true&showpopout=true&showtabs=false'
+ '&parenturl=' + encodeURIComponent(wind...
Friday, December 14, 2012
December 14, 2012
Iphone Jobs
Home
Android Jobs
Iphone Jobs
Jobs for All
Friday, December 14, 2012
Iphone Jobs
BNB Gamestudio hiring iphone developers
exp: 0-1
Timing : 11:00 AM - 1:00 PM and 4:00 PM to 6:00 PM
Interview Rounds
1st : Written Test (Technical, logical programs)
2nd : Face to face interview (Technical)
3rd : Face to face interview (HR)
!--
google_ad_client = "ca-pub-4378340310740210";
/*...
December 14, 2012
Android Jobs (0-2yr exp)
Android Jobs (0-2yr exp)
Deloitte Hiring freshers Software Developers (0-1 yr )
Role: Software Developer
exp: 0-1 yr
click here to apply online
Click here to apply- Register here
http://www.bnbinfotech.com/
!--
google_ad_client = "ca-pub-4378340310740210";
/* mobengineers */
google_ad_slot = "2334120672";
google_ad_width = 728;
google_ad_height = 90;
//
-->...
Wednesday, December 12, 2012
December 12, 2012
Online Training
By Entrepreneur & Financial Planning
android institutes in hyderabad, android online training, android training, android training in ameerpet, android training in hyderabad, online training, online training android, training

Saturday, November 24, 2012
November 24, 2012
Graphics
Graphics in Android
Android API provides allow to draw custom graphics onto a canvas or to modify existing views to look good.
We we draw graphics, we can do it in 2 ways.
1. draw the graphics into a view object from layout.
2. draw the graphics directly to the Canvas.
To draw something, we need 4 basic components.
1. A Bitmap to hold the pixels.
2. A canvas to host the draw ...
Friday, November 23, 2012
November 23, 2012
jobs@ Android
Monday, November 19, 2012
November 19, 2012
Fragments in android
By Entrepreneur & Financial Planning
android fragments, fragments, fragments in android, fragments lifecycle, honeycomb fragments, lifecycle

Fragments represent behavior in particular portion in an activity.
Fragments must embedded in an activity and they cannot run independently without activity.
fragments having its own life cycle like activity life cycle.
To create fragement, we have to create a sub class of fragment.
Fragments introduced from android 3.0(HoneyComb) onwards
It contains callback methods similar to an activity...
Wednesday, November 14, 2012
November 14, 2012
BroadCast Receiver
It class which extends BroadCastReceiver.
which is registered in the android app via manifest file.
This class can be able to recieve intents via sendBroadcast()
BroadCast Receiver defines the method onReceive(). only during this method , your BroadCast Receiver object will be valid.
ex: public class PhoneReceiver extends BroadcastReciever
{
@override
public void onReceive()
{
}
}...
Tuesday, November 6, 2012
November 06, 2012
Upload file to server FTP
Class FTPClient
java.lang.Object
extended by org.apache.commons.net.SocketClient
extended by org.apache.commons.net.ftp.FTP
extended by org.apache.commons.net.ftp.FTPClient
public abstract class SocketClient extends Object
1. SocketClient provides the basic operations that are required of client...
Monday, October 29, 2012
October 29, 2012
Service in android
By Entrepreneur & Financial Planning
android, android background processes, android service, broadcast service, service, service in android

Activity is a foreground process. It contains user interaction. To run long running operations, we have to create a service.It will run in background. It does not contain user interaction.
Types of services:
1. Unbound Service: it runs in the background indefinitely even started activity with service ends also.
2. Bound Service : it will run till life time of activity.
Activity can start...
Tuesday, October 23, 2012
October 23, 2012
Camera:
By Entrepreneur & Financial Planning
android camera, camera, camera service in android, capture image in android, photo, photo upload in android

in android, we can access camera from app by 2 ways.
implicit intent launches default camera
Intent i=new Intent("android.media.action.IMAGE_CAPTURE");
startActivity(i);
permission in manifest.xml
<uses-permission android:name="android.permission.CAMERA"/>
Button b=(Button)findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener()...
October 23, 2012
WifiManager
By Entrepreneur & Financial Planning
android wifi, internet android, local wireless android, wifi, wifi manager, wifi manager android, wireless android

java.lang.object
- android.net.wifi.wifimanager
WifiManager class provides primary api for managing all aspects of wifi connectivity.
get the instance of this class by calling
contaxt.getSystemService(context.WIFI_Service);
it deals with list of configured networks. this can be viewed, updated.
check wifi status:
ConnectivityManager conMgr;
NetworkInfo netInfo;
WifiManager wifiMgr;
conMgr=(ConnectivityManager)getSystemService(context.WIFI_Service);
netInfo=conMgr.getActiveNetworkInfo();
if(!(netInfo==null))
{
if(WifiMgr.isWifiEnabled())
{
//wifi ...
October 23, 2012
WifiManager in Android
By Entrepreneur & Financial Planning
android wifi, internet android, local wireless android, wifi, wifi manager, wifi manager android, wireless android

java.lang.object
- android.net.wifi.wifimanager
WifiManager class provides primary api for managing all aspects of wifi connectivity.
get the instance of this class by calling
contaxt.getSystemService(context.WIFI_Service);
it deals with list of configured networks. this can be viewed, updated.
check wifi status:
ConnectivityManager conMgr;
NetworkInfo netInfo;
WifiManager wifiMgr;
conMgr=(ConnectivityManager)getSystemService(context.WIFI_Service);
netInfo=conMgr.getActiveNetworkInfo();
if(!(netInfo==null))
{
if(WifiMgr.isWifiEnabled())
{
//wifi ...
October 23, 2012
TelephonyManager
By Entrepreneur & Financial Planning
android call handling, android call status, android phone, android telephony manager, phone call android, telephony manager

java.lang.object
android.telephony.TelephonyManager
it provides access to the info about telephony services.
we can register services to receive notification of telephony state changes.
context.getSystemService(context.TELEPHONY_SERVICE);
SOME METHODS:
public int getCallState()- get the call state
public cellLocation getCellLocation()- returns current location of the device.....
October 23, 2012
Bluetooth in Android
package:
import package:
import android.bluetooth.*;
<uses-permission android:name="android.permission.BLUETOOTH"/>
for more advanced bluetooth tasks , like setting name, connecting....
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
ACCESS THE BLUETOOTH ADAPTER
Android bluetooth apis include bluetooth adapter class.
if we want to perform any action
BluetoothAdapter...
October 23, 2012
Pending Intent in Android
Pending
intent is a token to the other application, which allows the other application
to use your application’s permissions to execute a predefined piece of code.
Here other
applications means it may be an alarm manager, home
screen widget manager etc......
To perform
a broadcast via a pending intent, so get a pendingIntent via
PendingIntent.getBroadcast().
To perform
an activity...
October 23, 2012
Notifications -Toast, Dialogs,Statusbar Notifications
By Entrepreneur & Financial Planning
alert dialog, dialog boxes, dialogs, notifications in android, progress bar dialog, statusbar notification, toast notification

Notifications:
toast notification
statusbar notification
dialogboxes
Adding sound
notification.defaults|=Notification.DEFAULT_SOUND;
Adding Vibration:
notification.defauls|=Notification.DEFAULT_VIBRATE;
adding flash lights:
notification.defauls|=Notification.DEFAULT_LIGHTS;
dialog is small window on the screen. when dialog is executed the activity losses its focus and dialog gets total...
Saturday, October 20, 2012
October 20, 2012