Reliance launches HTC wildfire in India

Sunday, August 1, 2010 0 comments

HTC has partnered with Reliance Communications Mobile officially declares the release of HTC wildfire in India. Reliance mobile customers will get 500MB of data usage free for 6 months with HTC wildfire mobile.This phone price will be around 16,000 Rs.

htc-wildfire

Detailed Features

CPU Processing Speed 528 MHz
Storage

ROM: 512 MB
RAM: 384 MB

Platform

Android™ 2.1 (Éclair) with HTC Sense™

Expansion slot:
  • microSD™ memory card (SD 2.0 compatible)
  • Supports up to 32 GB
Connectors
  • 3.5 mm stereo audio jack
  • Standard micro-USB (5-pin micro-USB 2.0)
  • Sensors
  • G-Sensor
  • Digital compass
  • Proximity sensor
  • Ambient light sensor
  • HTC Widgets
  • Bookmarks, Calculator, Calendar, Clock, FM Radio, Friend Stream, Mail, Messages, Music, News, People, Stocks, Weather, Settings (such as Profile, Ringtone, Wi-Fi™, Bluetooth®), and more
  • Downloadable widgets
  • Multimedia
  • Photos application for viewing photos and videos
  • Music
  • FM Radio
  • Power & Battery

    Battery type: Rechargeable Lithium-ion battery

    Capacity: 1300 mAh

    Talk time:

    • WCDMA: Up to 440 mins
    • GSM: Up to 490 mins

    Video supported formats:

    • Playback:.3gp, .3g2, .mp4, .wmv
    • Recording:.3gp

    Audio supported formats:

    • Playback:.aac, .amr, .ogg, .m4a, .mid, mp3, .wav, .wma
    • Recording:.amr
    Internet

    3G:

    • Up to 7.2 Mbps download speed
    • Up to 384 kbps upload speed

    GPRS:

    • Up to 114 kbps downloading

    EDGE:

    • Up to 560 kbps downloading

    Wi-Fi™:

    • IEEE 802.11 b/g
    Camera
    • 5 megapixel color camera
    • Auto focus and flash
    • Geotagging
    Social Networking
  • Facebook© for HTC Sense
  • Friend Stream
  • Photo sharing on Facebook©, Flickr®, and Twitter™
  • Video sharing on YouTube™
  • HTC Peep for twittering
  • Bluetooth
  • Bluetooth® 2.1 with Enhanced Data Rate
  • A2DP for wireless stereo headsets
  • FTP and OPP (object push) for file transfer
  • Other supported profiles: AVRCP, GAP, GOEP, HFP, HSP, PBAP, SPP, Service Discovery Application Profile
  • Readmore»»

    Huawei to launch cheapest Android phones U8300 and U8500in India

    Thursday, July 29, 2010 0 comments

    huawei-u8300 Huawei Technologies is all set for launching cheapest phones for Android platform. Seeing the buzz, that is created in the market Huawei realized the Indian’s mind set and now planning to release two Android based Handsets U8300 and U8500. These handsets going to be priced in between 7,000Rs to 10,000Rs.

    U8300 is a QWERTY Android phone equipped with Social Networking sites such as Facebook and twitter etc., it comes with 3.2 mega pixel camera. while U8500 is a touch screen mobile equipped with Wi-Fi technology.

    Readmore»»

    Complete Guide for developing Android apps with Eclipse

    Thursday, July 22, 2010 2 comments

    This tutorial let’s you develop Android apps on your own on Eclipse IDE with ADT plugin for Eclipse. I’ll describe clearly how to set up an environment for developing Android apps using Eclipse IDE. This tutorial assumes that you already installed Eclipse IDE in your system. Even if you didn’t no problem..you can download from here: http://www.eclipse.org/downloads/. For usage of Eclipse and Eclipse shortcuts you can just refer following link: http://code.techiesteps.com/search/label/Eclipse%20/%20MyEclipse

    SETTING UP ANDROID DEVELOPMENT ENVIRONMENT WITH ECLIPSE

    Step1: Install Eclipse IDE.

    Step2: Android SDK

    Download the Android SDK from the Android homepage under Android SDK download . The download contains a zip file which you can extract to any place in your file system, e.g. I placed it under "C:\android-sdk-windows" .

    Step3: Use the Eclipse update manager to install all available plugins for the Android Development Tools (ADT) from the URL https://dl-ssl.google.com/android/eclipse/ .

    ADT-install 

    Step3: Configuration

    In Eclipse open the Preferences dialog via Windows -> Preferences. Select Android and maintain the installation path of the Android SDK.

    preferences

    Step4: Select now Window -> Android SDK and AVD Manager from the menu.

    AVD Manager

    Step5: Select available packages and select the latest version of the SDK.

    AvailablePackages

    InstallingArchives

    Press "Install selected" and confirm the license for all package.

    After the installation restart Eclipse.

    Step6: Device

    You need to define a device which can be used for emulation. Press the device manager button, press "New" and maintain the following.

    DeviceManager

    Devices

    Virtual-Device

    Press "Create AVD".This will create the device. To test if you setup is correct, Select your device and press "Start".

    DeviceStart

    After (a long time) your device should be started.

    TestDevice

    To test, whether your device is correctly working or not, search some thing in the Google search if will show results in the Emulator.

    GoogleSearch-in-Android

    ANDROID APPLICATION DEVELOPMENT

    Creating First Android Project:

    Step1: Select File -> New -> Other -> Android -> Android Project and create the Android project "TemperatureConverter" Maintain the following.

    Android-Project

    Press "Finish". This should create the following directory structure.

    DirectoryStructure

    Step2:"R.java" is a generated class which contains the text and the UI elements.

    The Android SDK allows to maintain certain artifacts, e.g. strings and UI's, in two ways, via a rich editor and directly via XML. The following description tries to use the rich UI but for validation lists also the XML. You can switch between the two things the the tab on the lower part of the screen. For example:

    UI-XML

    Step3:Android allows to create attributes for resources, e.g. for strings and / or colors. These attributes can be used in your UI definition via XML or in your Java source code.

    Select the file "res/values/string.xml" and press "Add". Select "Color" and maintain "myColor" as the name and "#000099" as the value.

    myColor

    Add also the following "String" attributes. String attributes allow to translate the application at a later point.

    Name       Value
    buttonHandler myClickHandler
    celsius to Celsius
    fahrenheit to Fahrenheit

    please see the xml file whether entries are correctly inserted or not and check for xml validity.

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <string name="hello">Hello World, Convert!</string>
        <string name="app_name">Celsius to Fahrenheit Converter</string>
    <color name="myColor">#000099</color>
    <string name="buttonHandler">myClickHandler</string>
    <string name="celsius">to Celsius</string>
    <string name="fahrenheit">to Fahrenheit</string>
    </resources>


    Step4: UI Elements



    Select "res/layout/main.xml" and open the Android editor via double-click. This editor allows to maintain the UI via drag and drop or directly via the XML source code. You can switch between both representations via the tabs at the bottom of the editor.witch to "main.xml" and verify that your XML looks like the following. Especially the grouping of RadioButtons into a group is difficult to get right with the editor. Delete the "Hello World, Hello!" via a right mouse click. You can add text fields and buttons via rich editor or by placing xml code in main.xml manually. After adding screen should look like this



    screen 


    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    	android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@color/myColor">
    <EditText android:id="@+id/EditText01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:inputType="numberSigned|numberDecimal"></EditText>
    	<RadioGroup android:id="@+id/RadioGroup01"
    		android:layout_width="wrap_content" android:layout_height="wrap_content">
    		<RadioButton android:id="@+id/RadioButton01"
    			android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/celsius" android:checked="true"></RadioButton>
    		<RadioButton android:id="@+id/RadioButton02"
    			android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fahrenheit"></RadioButton>
    	</RadioGroup>
    	<Button android:id="@+id/Button01"
    		android:layout_height="wrap_content" android:onClick="@string/buttonHandler" android:layout_width="wrap_content" android:text="calculate"></Button>
    </LinearLayout>


    Step5: Develop logic for converting celsius to Fahrenheit and viceversa write following java code in Convert.java


    package org.androidbuzz.apps;
    import android.app.Activity;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.EditText;
    import android.widget.RadioButton;
    import android.widget.Toast;
    public class Convert extends Activity {
    	private EditText text;
    	@Override
    	public void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.main);
    		text = (EditText) findViewById(R.id.EditText01);
    	}
    	// This method is called at button click because we assigned the name to the
    	// "On Click property" of the button
    	public void myClickHandler(View view) {
    		switch (view.getId()) {
    		case R.id.Button01:
    			RadioButton celsiusButton = (RadioButton) findViewById(R.id.RadioButton01);
    			RadioButton fahrenheitButton = (RadioButton) findViewById(R.id.RadioButton02);
    			if (text.getText().length() == 0) {
    				Toast.makeText(
    						this,
    						"Please enter a valid number", Toast.LENGTH_LONG).show();
    				return;
    			}
    			
    			float inputValue = Float.parseFloat(text.getText().toString());
    			if (celsiusButton.isChecked()) {
    				text.setText(String
    						.valueOf(convertFahrenheitToCelcius(inputValue)));
    			} else {
    				text.setText(String
    						.valueOf(convertCelciusToFahrenheit(inputValue)));
    			}
    			// Switch to the other button
    			if (fahrenheitButton.isChecked()) {
    				fahrenheitButton.setChecked(false);
    				celsiusButton.setChecked(true);
    			} else {
    				fahrenheitButton.setChecked(true);
    				celsiusButton.setChecked(false);
    			}
    			break;
    		}
    	}
    	// Converts to celcius
    	private float convertFahrenheitToCelcius(float fahrenheit) {
    		return ((fahrenheit - 32) * 5 / 9);
    	}
    	// Converts to fahrenheit
    	private float convertCelciusToFahrenheit(float celsius) {
    		return ((celsius * 9) / 5) + 32;
    	}
    }


    Step6: You have done with generating all artifacts. Now you want to run your application and see the output. To run the application right click on TemperatureConverter –>Run as-> Android application



    Emulator starts slowly…you’ll see the following output.



    output



    Our application appears in the main menu of the Android phone with android icon.



    OurApp

    Readmore»»

    Motorola i1 PTT Android smart phone available now

    Wednesday, July 21, 2010 0 comments

    Motorola-i11Sprint officially announced that it will start offering the Motorola i1 Android smart phone to its Nextel push-to-talk customers starting on July 25 for a price of $149.99 (after a $50 mail-in rebate).The i1, which was officially announced by Motorola back in March, is the first Android powered smart phone to work on iDEN push to talk  networks, such as that run by Sprint Nextel. The ruggedized phone features military specification resistance to dust, shock, vibration, and rain and is designed for harsh environments, such as construction sites. But while it can handle unfriendly environments, it still provides access to the near 100,000 applications available on the Android Market. Other features of the phone include a 5 megapixel camera, a HVGA resolution capacitive touch screen display, and business friendly applications such as the Xora workforce management app, TeleNavTrack, and Sprint Mobile Locator.The i1 isn’t currently available online, so if you are looking to pick one up you’ll have to head to your local Boost Mobile retailer.

    For more details:http://www.motorola.com/Consumers/US-EN/Consumer-Product-and-Services/Mobile-Phones/MOTOROLA-i1-US-EN

    Readmore»»

    Want a Google NexusOne ? better grab before August.

    0 comments

    nexus_one

    Well we knew that there wouldn’t be many Nexus One’s left when Google said they were receiving their last shipment from HTC, but selling out within 10 days? That’s cutting it short.Google has told the L.A. Times that it expects to sell all of it’s remaining stock of the N1 by the end of July, which is essentially 10 days from now. So if you’re been on the fence about buying the Nexus, you probably shouldn’t hesitate much longer.They have also mentioned that they will be closing their web store, http://google.com/phone. According to Google’s Nexus One blog:

    Earlier this year, we announced that we will be closing the Nexus One web store. This week we received our last shipment of Nexus One phones. Once we sell these devices, the Nexus One will no longer be available online from Google. Customer support will still be available for current Nexus One customers.

    [via latimes] [via Google Nexus One Blog]

    Readmore»»

    Samsung Galaxy S to come in September in France

    1 comments

    Samsung Galaxy S After Korea, it seems France would getting Froyo sweetness on Android powered Samsung Galaxy S. Samsung France recently said that Galaxy S will get Android 2.2 update in September.It is not still clear that it is only the French version or other international version will also get Android 2.2. We hope to hear from Samsung soon.

    Readmore»»

    Android on CDMA, Reliance launching Samsung Galaxyi899

    0 comments

    Reliance Communications, recently launched Samsung Galaxy i899, the India’s first CDMA Phone on Android Platform. This phone was already launched in the US, Europe and China, but India was skipped.Samsung Galaxy i899 is finally available in India with a price tag of Rs.19,990. This handset comes with 3.2 megapixel camera, 32GB expandable memory, 3.2 inch AMOLED screen and much more. Check out the complete specs below.

      3.2 inch AMOLED touchscreen display DivX support

      GPS

      320 x 480 pixel resolution

      1440 mAh battery

      Wi-Fi

      Google’s Android OS Up to 6.7 hours talk-time

      Bluetooth

      800MHz processor Up to 588 hours standby time Reliance Netconnect
      3.2 megapixel camera with LED flash 32GB expandable memory Push and Pull mail service
      3-Way Call Conference 230MB internal memory
      samsung_galaxy_i899
      Samsung-i899
    Readmore»»