android_sdk_windows_m3-rc22a

所属分类:android开发
开发工具:Others
文件大小:54694KB
下载次数:318
上传日期:2009-05-24 20:29:21
上 传 者song217
说明:  android 模拟器,支持vnc server,可以用vnc客户端对其进行远程操作,压缩包鈡包括配置好的文件,解压即可运行
(failed to translate)

文件列表:
android_sdk_windows_m3-rc22a\android.jar (8735668, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\adc.html (8626, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\adc_faq.html (11886, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\codesearch.css (517, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\codesite.css (22083, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\gui-base.css (809, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\gui-fixed.css (2830, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\gui-ratio.css (5142, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\codesite\semantic_headers.css (963, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\search_autocomplete.js (4305, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\style.css (5773, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\triangle-close.png (88, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets\triangle-open.png (91, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets-google\android-logo.gif (2386, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\assets-google\google-logo-small.gif (4707, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\bblocks-manifest.html (16902, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\building-blocks.html (9962, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data\contentproviders.html (33282, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data\databases.html (8038, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data\files.html (6797, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data\network.html (6377, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data\preferences.html (7629, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\data.html (7977, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\implementing-ui.html (6950, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\index.html (9030, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\resources-i18n.html (39692, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\security.html (21657, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\applying-themes.html (7995, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\binding.html (8011, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\glossary.html (12453, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\hierarchy.html (10307, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\hooking.html (6322, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\layout.html (17359, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\notifications.html (7343, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\devel\ui\xml.html (11691, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\documentation.html (7691, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\download.html (7542, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\goodies\index.html (9740, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\goodies\wallpaper\android-wallpaper1_1024x768.png (42181, 2007-11-14)
android_sdk_windows_m3-rc22a\docs\goodies\wallpaper\android-wallpaper1_1280x800.png (48098, 2007-11-14)
... ...

Android Skeleton App ~~~~~~~~~~~~~~~~~~~~ This directory contains the full implementation of a basic application for the Android platform, demonstrating the basic facilities that applications will use. You can run the application either directly from the "test" list in the app launcher (it is named Skeleton App) or by selecting it from the top list in the Sample Code app. The files contained here: AndroidManifest.xml This XML file describes to the Android platform what your application can do. It is a required file, and is the mechanism you use to show your application to the user (in the app launcher's list), handle data types, etc. src/* Under this directory is the Java source for for your application. src/com/google/android/skeletonapp/SkeletonActivity.java This is the implementation of the "activity" feature described in AndroidManifest.xml. The path each class implementation is {src/PACKAGE/CLASS.java}, where PACKAGE comes from the name in the tag and CLASS comes from the class in the tag. res/* Under this directory are the resources for your application. res/layout/skeleton_activity.xml The res/layout/ directory contains XML files describing user interface view hierarchies. The skeleton_activity.xml file here is used by SkeletonActivity.java to construct its UI. The base name of each file (all text before a '.' character) is taken as the resource name; it must be lower-case. res/drawable/violet.png The res/drawable/ directory contains images and other things that can be drawn to the screen. These can be bitmaps (in .png or .jpeg format) or special XML files describing more complex drawings. The violet.png file here is used as the image to display in one of the views in skeleton_activity.xml. Like layout files, the base name is used for the resulting resource name. res/values/colors.xml res/values/strings.xml res/values/styles.xml These XML files describe additional resources included in the application. They all use the same syntax; all of these resources could be defined in one file, but we generally split them apart as shown here to keep things organized.

近期下载者

相关文件


收藏者