http://visualjquery.com/
http://www.k99k.com/jQuery_getting_started.html
http://blog.csdn.net/cyxlzzs/article/details/6646204
http://wenku.baidu.com/view/5572d3d7195f312b3169a56a.html
http://www.cnblogs.com/nikyxxx/archive/2010/03/12/1684709.html
http://www.iteye.com/topic/961069
http://www.itivy.com/android/archive/2011/8/29/android-popupwindow-usage.html
http://blog.csdn.net/hellogv/article/details/5955959
http://www.cnblogs.com/-cyb/archive/2011/08/02/Android_textAppearance.html
http://www.cnblogs.com/blueofsky/default.html?page=2
自动更新:
http://www.oschina.net/question/163910_28462
http://blog.csdn.net/xjanker2/article/details/6303937
http://code.google.com/p/androidex/source/browse/trunk/jtapp-12-updateapksamples/src/jtapp/updateapksamples/UpdateActivity.java
http://blog.csdn.net/xjanker2/article/details/6303937
Uri marketUri = Uri.parse("market://search?q=pname:com.appmaker.tefloukipackage");
Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri);
try {
context.startActivity(marketIntent);
} catch (ActivityNotFoundException ex) {
showAlertDialog(context, "Error", "Could not launch the market application.", true, null);
}
File fullPath = getFileStreamPath("name_of_downloaded_app.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(fullPath), "application/vnd.android.package-archive");
startActivity(intent);