<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Code Library &#187; description</title>
	<atom:link href="http://www.ucosoft.com/tag/description/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ucosoft.com</link>
	<description>Free Source Code and Program Tips</description>
	<lastBuildDate>Thu, 22 Jul 2010 05:17:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Android features various JAVA package description</title>
		<link>http://www.ucosoft.com/android-features-java-package-description-2.html</link>
		<comments>http://www.ucosoft.com/android-features-java-package-description-2.html#comments</comments>
		<pubDate>Thu, 17 Dec 2009 13:56:56 +0000</pubDate>
		<dc:creator>support</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[package]]></category>

		<guid isPermaLink="false">http://www.ucosoft.com/uncategorized/android-features-java-package-description-2.html</guid>
		<description><![CDATA[In the Android application development, usually using JAVA language, in addition to the familiar with the basics of JAVA language, they also need to understand Android provides extended functionality JAVA JAVA applications in the general, if you need to use reference-based library, usually need to use the following method: import javax.swing .*; JAVA expressed above [...]]]></description>
			<content:encoded><![CDATA[<p>  In the Android application development, usually using JAVA language, in addition to the familiar with the basics of JAVA language, they also need to understand Android provides extended functionality JAVA </p>
<p>  JAVA applications in the general, if you need to use reference-based library, usually need to use the following method: </p>
<p>  import javax.swing .*; </p>
<p>  JAVA expressed above code references the GUI components Swing, javax.swing that JAVA in a package. </p>
<p>  android provide some extended JAVA class library, class library is divided into several packages, each package contains a number of categories.  For example: In the Android in the calculator is a relatively simple procedure, the entrance program file for the Calculator.java, the file contains the following: </p>
<p>  package com.android.calculator2; </p>
<p>  import android.app.Activity; </p>
<p>  import android.os.Bundle; </p>
<p>  import android.util.Log; </p>
<p>  import android.util.Config; </p>
<p>  import android.view.Menu; </p>
<p>  import android.view.MenuItem; </p>
<p>  import android.view.Window; </p>
<p>  import android.view.View; </p>
<p>  import android.widget.Button; </p>
<p>  import android.widget.ListView; </p>
<p>  import android.content.res.Configuration; </p>
<p>  In Android, various android .* packages written in a way, it is important description of the package is as follows: </p>
<p>  android.app: to provide high-level process model, provide the basic runtime environment </p>
<p>  android.content: contains various data on the device to access and release of class </p>
<p>  android.database: browsing through the content provider and operational databases </p>
<p>  android.graphics: the underlying graphics library, including canvas, color filters, points, rectangles, you can draw them directly on the screen. </p>
<p>  android.location: location and related services in classes </p>
<p>  android.media: to provide some class management of multiple audio and video media interface </p>
<p>  android.net: network access to help the class, more than the usual java.net .* Interface </p>
<p>  android.os: provides a system service, message transport, IPC mechanisms </p>
<p>  android.provider: Provides classes to access Android content provider </p>
<p>  android.telephony: to provide call-related API interaction </p>
<p>  android.view: provide the basis for user interface Interface Framework </p>
<p>  android.util: involved in instrumental methods, such as time and date of the operation </p>
<p>  android.webkit: default browser operator interface </p>
<p>  android.widget: includes a variety of UI elements (mostly visible) in the application use the screen </p>
<p>  Article Source: http://os.51cto.com/art/200905/126049.htm </p>

	Tags: <strong><a href="http://www.ucosoft.com/tag/android" title="android" rel="tag">android</a>, <a href="http://www.ucosoft.com/tag/description" title="description" rel="tag">description</a>, <a href="http://www.ucosoft.com/tag/features" title="features" rel="tag">features</a>, <a href="http://www.ucosoft.com/tag/java" title="Java" rel="tag">Java</a>, <a href="http://www.ucosoft.com/tag/package" title="package" rel="tag">package</a></strong><br />
]]></content:encoded>
			<wfw:commentRss>http://www.ucosoft.com/android-features-java-package-description-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android features various JAVA package description</title>
		<link>http://www.ucosoft.com/android-features-java-package-description.html</link>
		<comments>http://www.ucosoft.com/android-features-java-package-description.html#comments</comments>
		<pubDate>Tue, 24 Nov 2009 11:54:50 +0000</pubDate>
		<dc:creator>support</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[package]]></category>

		<guid isPermaLink="false">http://www.ucosoft.com/uncategorized/android-features-java-package-description.html</guid>
		<description><![CDATA[In the Android application development, usually using JAVA language, in addition to the familiar with the basics of JAVA language, they also need to understand Android provides extended functionality JAVA JAVA applications in the general, if you need to use reference-based library, usually need to use the following method: import javax.swing .*; JAVA expressed above [...]]]></description>
			<content:encoded><![CDATA[<p>  In the Android application development, usually using JAVA language, in addition to the familiar with the basics of JAVA language, they also need to understand Android provides extended functionality JAVA </p>
<p>  JAVA applications in the general, if you need to use reference-based library, usually need to use the following method: </p>
<p>  import javax.swing .*; </p>
<p>  JAVA expressed above code references the GUI components Swing, javax.swing that JAVA in a package. </p>
<p>  android provide some extended JAVA class library, class library is divided into several packages, each package contains a number of categories.  For example: In the Android in the calculator is a relatively simple procedure, the entrance program file for the Calculator.java, the file contains the following: </p>
<p>  package com.android.calculator2; </p>
<p>  import android.app.Activity; </p>
<p>  import android.os.Bundle; </p>
<p>  import android.util.Log; </p>
<p>  import android.util.Config; </p>
<p>  import android.view.Menu; </p>
<p>  import android.view.MenuItem; </p>
<p>  import android.view.Window; </p>
<p>  import android.view.View; </p>
<p>  import android.widget.Button; </p>
<p>  import android.widget.ListView; </p>
<p>  import android.content.res.Configuration; </p>
<p>  In Android, various android .* packages written in a way, it is important description of the package is as follows: </p>
<p>  android.app: to provide high-level process model, provide the basic runtime environment </p>
<p>  android.content: contains various data on the device to access and release of class </p>
<p>  android.database: browsing through the content provider and operational databases </p>
<p>  android.graphics: the underlying graphics library, including canvas, color filters, points, rectangles, you can draw them directly on the screen. </p>
<p>  android.location: location and related services in classes </p>
<p>  android.media: to provide some class management of multiple audio and video media interface </p>
<p>  android.net: network access to help the class, more than the usual java.net .* Interface </p>
<p>  android.os: provides a system service, message transport, IPC mechanisms </p>
<p>  android.provider: Provides classes to access Android content provider </p>
<p>  android.telephony: to provide call-related API interaction </p>
<p>  android.view: provide the basis for user interface Interface Framework </p>
<p>  android.util: involved in instrumental methods, such as time and date of the operation </p>
<p>  android.webkit: default browser operator interface </p>
<p>  android.widget: includes a variety of UI elements (mostly visible) in the application use the screen </p>
<p>  Article Source: http://os.51cto.com/art/200905/126049.htm </p>

	Tags: <strong><a href="http://www.ucosoft.com/tag/android" title="android" rel="tag">android</a>, <a href="http://www.ucosoft.com/tag/description" title="description" rel="tag">description</a>, <a href="http://www.ucosoft.com/tag/features" title="features" rel="tag">features</a>, <a href="http://www.ucosoft.com/tag/java" title="Java" rel="tag">Java</a>, <a href="http://www.ucosoft.com/tag/package" title="package" rel="tag">package</a></strong><br />
]]></content:encoded>
			<wfw:commentRss>http://www.ucosoft.com/android-features-java-package-description.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

