博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Andriod
阅读量:7174 次
发布时间:2019-06-29

本文共 2140 字,大约阅读时间需要 7 分钟。

  hot3.png

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

转载于:https://my.oschina.net/mycbb/blog/40750

你可能感兴趣的文章
ceph理论及部署配置实践
查看>>
Mysql基础之字符集与乱码
查看>>
hdu 1829 A Bug's Life(分组并查集(偏移量))
查看>>
2015微信商业化正式启幕 为企业开启O2O主阵地
查看>>
winScp上传文件时,如何过滤制定文件
查看>>
通过NavMeshObstacle解决NavMesh防卡
查看>>
Current-sense monitor and MOSFET boost output current
查看>>
实验二 伸展树算法设计与实现
查看>>
kendo-ui表单验证
查看>>
ocp 1Z0-051 71-105题解析
查看>>
Web App之一
查看>>
linux less命令详解
查看>>
iOS MessagePack
查看>>
【转】Linux下的文本dos格式转Unix格式,去除^M符号
查看>>
怎样用OleDbDataAdapter来对数据库进行操作?
查看>>
查询sql执行速度
查看>>
Android中ExpandableListView控件基本使用
查看>>
关于软件架构师基本素质和职责【概念转摘】
查看>>
The message queue
查看>>
citrix协议ICA技术原理
查看>>