Quantcast
// archives

List of Tag 'Package'

This tag is associated with 5 posts

Videocon V1546 Dual SIM Phone Price in India

Videocon V1546 Price in India is around 2,499/-. Videocon V1546 is a full touchscreen mobile phone which supports dual SIM card slots with dual standby. It brings a 2.8-inch (7.1cm) TFT full touchscreen display and packs a 1.3 megapixel camera with digital zoom. You will have all other features like FM radio with recording, Bluetooth with A2DP, WAP browser, and much more.

Videocon V1546 Dual SIM Phone Price in India

Videocon V1546 Features and Specifications:

  • 2.8-inch (7.1cm) TFT full touchscreen display
  • Display resolution of of 240 x 320 pixels
  • 1.3 megapixel camera with digital zoom
  • Camera resolution of 1280 x 1024 pixels
  • Video formats: MP4, 3GP
  • Supports up to 4GB of T-Flash cards
  • FM radio with recording
  • Music formats: MP3, WAV with sound recording
  • Dedicated music keys and 3.5mm audio jack
  • Works on GSM 900 / 1800 MHz operating frequency
  • Dual SIM with dual standby support
  • GPRS and Bluetooth with A2DP
  • Uses USB 2.0 interface
  • SMS SMS Storage 500 (SIM1 + SIM2), SMS Blacklist, MMS
  • WAP browser
  • Social Networking Services
  • Phone book of 500 entries
  • Movie Juke Box Application
  • Mobile Tracker, E-Book Reader

Bookmark and Share

Samsung Galaxy Beam Full Technical Specifications

Samsung Galaxy Beam is an Android based smartphone powered with the Dual core processor that makes enables the apps to run faster. Galaxy Beam integrated with internal projector which isn’t new to Samsung.

Samsung Galaxy Beam is an Android based smartphone powered with the Dual core processor that makes enables the apps to run faster. Galaxy Beam integrated with internal projector which isn’t new to Samsung. The mobile is announced by the company in February 2012 and expected to come in the same year.

Samsung Galaxy Beam Full Technical Specifications

Samsung Galaxy Beam features and specifications

  • Network
    GSM / GPRS 850/900/1800/1900
    850/900/1900/2100 WCDMAHSPA
  • Weight and dimensions64.2 x 124 x 12.5 mm
    145 gram
  • Memory6 GB RAM
    8 GB internal memory
    MicroSD cards up to 32 GB
  • Display ScreenLCD-TFT capacitive touchscreen
    4 inch
    480 x 800 pixels
  • Camera5 megapixel AF Flash
  • MultimediaRecording and playback: 720p at 30 fps
    Video: DivX, MPEG-4, H.263, H.264, WMV
    Audio: AAC, AAC +, eAAC +, MP3, WMA
    Pico (brightness of 15 lumens)
  • Control and connectionsAndroid 2.3 operating system
    Dual core processor at 1 GHz
    Wi-Fi 802.11 b / g / n
    Bluetooth 3.0 + HS
    USB 2.0, headphone 3.5 mm
  • Battery2000 mAh


Bookmark and Share

Turn Android Phone to Ubuntu Desktop

Canonical today unveiled Ubuntu for Android, bringing the world’s favourite free desktop experience to multi-core Android smartphones docked with a keyboard andmonitor. Use Android on the phone and Ubuntu as your desktop, both running simultaneously on thesame device, with seamless sharing of contacts, messages and other common services.

Ubuntu for Android gives mobile workers a company phone that is also their enterprise desktop. Government and private institutions have embraced Ubuntu on the desktop because of its ease ofuse, security, manageability, superb range of native applications and excellent support for webbrowsers like Chrome and Firefox. The desktop can also include Windows applications, using thinclient and desktop virtualisation tools. Today’s IT departments commonly support a PC and at leastone desktop phone for every employee. Many also provide and manage mobile phones. Ubuntu for ndroid presents a compelling solution to IT complexity by reducing that burden to a single device.

Turn Android Phone to Ubuntu Desktop Using Ubuntu for Android

Canonical today unveiled Ubuntu for Android, bringing the world’s favourite free desktop experience to multi-core Android smartphones docked with a keyboard andmonitor. Use Android on the phone and Ubuntu as your desktop, both running simultaneously on thesame device, with seamless sharing of contacts, messages and other common services. This is not the Ubuntu Phone, Ubuntu works with Android side by side using the same kernel and it comes with 4G LTE, 3G capabilities to connect to the internet with high speed, and receive calls and text message while you docked the android device. You will be able to take the call or reject it and read and send text messages via thedesktop.




Bookmark and Share

Microsoft India launches disabled-friendly tools

microsoftAs per the UN data around 15% of the world’s population, or one billion people, live with disabilities. Though the numbers are of such magnitude, lay people are often unaware of the statistics and the challenges these people with disabilities face.Dec 3 rd- International Day for Persons with Disability (IDPwD) aims to increase awareness, understanding of disability issues, support for the dignity, rights and well-being of persons with disabilities and inclusion of persons with disabilities in every aspect of life.

With World Disability Day being observed Saturday, As per the UN data around 15% of the world’s population, or one billion people, live with disabilities. Though the numbers are of such magnitude, lay people are often unaware of the statistics and the challenges these people with disabilities face.Dec 3 rd- International Day for Persons with Disability (IDPwD) aims to increase awareness, understanding of disability issues, support for the dignity, rights and well-being of persons with disabilities and inclusion of persons with disabilities in every aspect of life. software major Micrsoft India introduced disabled-friendly tools for application in software of common use. It also announced special certification programmes for those with impairments.

“It is estimated that there are around 70 million people with disabilities in India. Ensuring that their needs are met with and that they have an equal opportunity is crucial to the process of inclusive growth in the country,” Microsoft India Chairman Bhaskar Pramanik said.

“Our vision is to create innovative technology that is accessible to everyone and adapts to each person’s needs. User-friendly public documents are a small but significant step to remove barriers, physical or otherwise, that keep individuals on the wrong side of the opportunity divide,” he said. These tools will help achieve accessibility and ensure that the documents created are useful within the government departments as well as for public consumption. The documents like five-year plan papers, annual reports, acts, laws, policies, circulars, office orders, census data, citizen charters etc, are accessible by design for those with special needs.

“The 40 templates (tools) created and released by Microsoft India today will enable governments and businesses to have accessibility incorporated at the time of creating a document itself. For example, if a template is used to create a circular, it can easily be converted into a digital talking book or a large print-output document for a visually impaired person,” a statement from Microsoft said.

Bookmark and Share

Android Package Explorer

 

The below image shows the Android package Explorer found in the Java perspective in Eclipse, displays all the components of the sample Android application.

src folder : include the package for the sample application namely com.msi.infoaegis.
R.java : The Android Developer Tools [ADT] create this file automatically and represents the constants headed to access various resources of the Android application.

The R.java file is created upone build automatically the figure shows the R.java file for the sample application. So be sure to not modify it by hand as all changes will be lost.

The R class contains anonymous subclasses, which each contain identifiers for the various resources. Note that all of these classes are static.

R.layout main identifies represents the layout by main.xml. Recall this value is used in the OnCreate() method of the activity as follows setContentView(R.layout.main). This is the point at which a specific activity and a specific layout(main) are bound together at runtime.

Main.xml :The application contains a file named main.xml that represents the visual aspects of the primary UI of the activity. Note that there is no reference in the main.xml where the layout is used.This means it may be used in more than one activity if desired

Referenced libraries : Contains android.jar, which is the Android runtime class jar file, found in the Android SDK.
Res folder : Ccontains the resource for the application. Resources in android are organized into a subdirectory of the project named res. Resources fall into three primary categories

  1.  Drawables: This folder contains graphics file such as icon and bitmap
  2.  Layouts : This folder contains XML files that represent the layouts and views of the application
  3.  Values :This folder contains a file named string.xml. This is the primary means for string localization for the application

AndroidManifest.xml

The AndroidManifest.xml file represent the development description for an Android application. The file lists any activity, service,content provider or receiver contained in the application along with the appropriate IntentFilters supported by the application

Things to note:

  1. The <manifest> tag is in essence importing classes from This package.
  2. The <application> tag has an attribute that references a resource from the applications resources .Note the @sympol preceding the drawable identifier. This is a hint for the file to look in the drawable folder of the applications resource for a resource called icon
  3. The <activity> tag contains the following attributes and values
    • Class represents the Java class implementing this activity
    • Android:label is the name of the application coming from one of the string resource. The string.xml file contains localizated string for the application
    • <intent-filter> represents the IntentFilter available in the sample application. This is the most common IntentFilter seen in Android application. This implement the entry point for the main action and is located in the launcher of the OS.
Related posts

Bookmark and Share
Bloggers - Meet Millions of Bloggers Online Marketing
Add blog to our blog directory. Royalty Free Music
.