Pages

Showing posts with label service. Show all posts
Showing posts with label service. Show all posts

Saturday, March 26, 2016

Nokia XL android dual SIM formally accessible in India at Rs 11 489

Nokia XL was proclaimed by Nokia at mobile world congress  earlier this year beside Nokia X and Nokia X+. Nokia XL is currently accessible on companys official on-line store for Rs 11,489 and can be delivered in 5 working days.
The Nokia XL is merely accessible in green color

Image courtesy: Nokia.com
Nokia XL

Feature and specification of Nokia XL

The Nokia XL runs on Nokia X software platform version 1.0 that relies on the Android Open Source Project.
This Smartphone also doesnt have access to Google play store .The user might get all apps from the Nokia store or third party developer.
Further all the Google services on this Smartphone are going to be replaced with Microsoft Services.

This Smartphone sports a 5 Mega pixel rear camera with led flash and 2MP front facing camera for video calling,
Connectivity possibility of Nokia XL includes Bluetooth, WiFi. and GPS with AGPS

The Nokia XL Dual SIM comes preloaded with Nokia MixRadio and other Popular apps like Facebook, Twitter, WeChat, Viber, and Skype.BBM, Plants vs. Zombies 2,and Vine.

Nokia XL supports dual SIM (GSM + GSM ) cards with dual standby. It has a 5.0"  WVGA touchscreen display with resolution of 480*800 pixels and provides a pixel density of 187 ppi. The Nokia XL is motivated by 1 GHz dual Core Qualcomm snapdragon S4 processor couple with 768 MB of RAM.
Storage possibility of Nokia XL comes with 4GB of built-in internal storage and it was additionally supported expandable storage up to 32 GB with the assistance of MicroSD card slot.

Feature and Specification of Nokia XL

Name Nokia XL
ManufacturerNokia
Dimensions141.4 x 77.7 x 10.9 mm
SIM SupportDual - Micro SIM GSM + GSM
Display12.7 cm, LCD 187 ppi,Capacitive Multipoint-Touch
ResolutionWVGA (800 x 480)
Connectivity2G, 3G, Wi-Fi - , GPS, USB WAPI
Video RecordingYes
CameraRear: 5 Mega Pixel with LED flash,
Front: 2 Mega Pixel 720p
Sensors: Ambient light sensor, Accelerometer, Proximity, sensor
Camera FeatureAuto exposure,enter weighted auto exposure,Still image editor
Panorama lens,
Battery 2000 mAh ST: 37 days, TT: 16 h(2G), 13 h(3G)
ProcessorDual-core 1 GHz Qualcomm Snapdragon S4
RAM: 768 MB
Storage:Internal : 4 GB
External: Expandable up to 32 GB via microSD
AudioMP3, AMR-NB, AMR-WB, FLAC, MIDI
VideoH.263, H.264/AVC, MPEG-4
Operating SystemNokia X software platform 1.0
Color Green
Additional featureMobile VPN, Data encryption for device,Device lock password
Firmware update, Device lock, PIN code, Device lock passcode,
Sales Package: Nokia XL Dual SIM, Charger AC-20, Battery BN-02 2000 mAh,
Nokia Stereo Headset WH-108, Quick guide
PriceRs 14,489

Source: Nokia.com
Read More..

Sunday, April 6, 2014

Basic Android background Service

Running sample program for background service

Step 1 :
Create sample service class

package com.javaorigin.android.sample.service;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

public class MyService extends Service {

String tag="TestService";
@Override
public void onCreate() {
super.onCreate();
Toast.makeText(this, "Service created...", Toast.LENGTH_LONG).show();
Log.i(tag, "Service created...");
}

@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
Log.i(tag, "Service started...");
}
@Override
public void onDestroy() {
super.onDestroy();
Toast.makeText(this, "Service destroyed...", Toast.LENGTH_LONG).show();
}

@Override
public IBinder onBind(Intent intent) {
return null;
}
}


Step 2 :
Create sample Activity class

package com.javaorigin.android.sample.service;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;

public class SampleAction extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView view = new TextView(this);
view.setText("Service Test");
Intent i = new Intent();
i.setClassName( "com.javaorigin.android.sample.service",
"com.javaorigin.android.sample.service.MyService" );
bindService( i, null, Context.BIND_AUTO_CREATE);
this.startService(i);
setContentView(view);
}
}


Step 3:
Configure AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.javaorigin.android.sample.service" android:versionCode="1"
android:versionName="1.0">
<application icon="@drawable/icon" label="@string/app_name">
<service class=".MyService" name=".MyService">
<intent-filter>
<action android:value="com.javaorigin.android.sample.service.MY_SERVICE"
android:name=".MyService" />

</intent-filter>
</service>
<activity android:name=".SampleAction"
android:label="@string/app_name">
<intent-filter>
<action name="android.intent.action.MAIN">
<category name="android.intent.category.LAUNCHER">
</intent-filter>
</activity>

</application>
<uses-sdk minsdkversion="8">

</manifest>
Read More..