Android 笔记

1.
下载回来的project,如果系
[2010-12-18 14:05:19 - Notification] Unable to resolve target 'android-6'
可改eclipse的default.porperties

# Project target.
target=android-8
http://www.pocketdigi.com/20100919/113.html                                              
                                          20101218
2.Android Demo演示
http://deyinchan.iteye.com/blog/385320
3.code
http://www.codeproject.com/info/search.aspx?artkw=android
4.界面,图标

http://www.ophonesdn.com/blog/renxiao2010/showBlog/publicshow/f2b75196-9e14-4968-92e6-2f0930c954a1?count=&max=&index
http://since2006.com/android/2.1-drawables.php
http://androiddrawableexplorer.appspot.com/

5 [问题]
Android LayoutEditor使Eclipse自动关闭

Windows环境下用Eclipse adt开发Android,用LayoutEditor打开layout/main.xml时Eclipse自动关闭。

此问题是由'fontmanager.dll' 过时导致。

我电脑上使用的是jdk1.5u5,当更新至jdk1.6u20后,问题解决。

参考:http://stackoverflow.com/questions/2345811/eclipse-crashes-when-i-invoke-android-layout-editor


6。 [问题]

Proguard.cfg(the file can't find) 解决方法

http://stackoverflow.com/questions/4444818/proguard-cfg-missing

更新sdk,就可以解决了

1、Eclipse-->> Window-->>Android SDK And AVD Manager

2、选中installed packages 中的SDK tools 然后点击 update all ..

经过上面两步问题即可解决


7. R.id
R.java 你可以看成是一个桥梁他是把主程序和res文件夹 中资源文件夹联系起来的纽带。
  你要使用Button这个组件,首先需要在res/layout 这个文件夹里面写出他,
然后赋予它一个id.
  这样,R.java里面就会自动生成一个ID与其对应。
  这是你在主程序中首先定义一个Button 我给你写一下
    private Button button;
    button=(Button)findViewById(R.id.button)

这时候,就可以在主程序中使用Button了。

你可能感兴趣的:(eclipse,android,windows,PHP,Blog)