Andriod

http://www.cnblogs.com/qianxudetianxia/archive/2011/05/03/2029704.html

android 推送机制


http://www.eoeandroid.com/thread-78646-1-4.html


http://www.eoeandroid.com/thread-1081-1-1.html

http://www.eoeandroid.com/thread-72550-1-1.html


http://www.elexcon.com/news/55488.html


http://open.qq.com/apps/dev    腾讯开放平台
http://open.weibo.com/         新浪开放平台
http://dev.renren.com/website  人人网 开放平台
http://dev.youku.com/          优酷开放平台
http://api.tudou.com/          土豆开放平台

http://www.weibodi.com/pic/user/1851563345


http://stackoverflow.com/questions/5657552/flash-inside-android-webview-how-do-i-set-fullscreen-automatically

http://stackoverflow.com/questions/6596243/problem-to-load-flv-video-in-webview

http://stackoverflow.com/questions/7951025/is-the-issue-related-to-flash-player-on-device-or-is-it-htc-device-side-known-f

http://www.cnblogs.com/xiao0/archive/2011/09/13/2174357.html



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);


你可能感兴趣的:(Andriod)