Android向桌面添加快捷方式,使其指向特定的网页


出处:http://www.cnblogs.com/wanyao/archive/2011/11/27/2265333.html




/*


          * 在桌面添加快捷方式


          * @param      icon         快捷方式图标


          * @param      name      快捷方式名称


          * @param      uri           快捷方式的intent Uri


          */


         public void addShortcut(Parcelable icon, String name, Uri uri){


                   Intent intentAddShortcut = new Intent(ACTION_ADD_SHORTCUT);


                   //添加名称


                   intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);


                   //添加图标


                   intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);


                   //设置Launcher的Uri数据


                   Intent intentLauncher = new Intent();


                   intentLauncher.setData(uri);


                   //添加快捷方式的启动方法


                   intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intentLauncher);


                   sendBroadcast(intentAddShortcut);


         }


当然,你还需要添加一个permission


<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />


这里第一个参数Parcelable类型的icon如何获得呢,以下举个例子从Drawable文件夹中获取图片。


Parcelable icon = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);




Android如何调用系统默认浏览器访问


一、启动android默认浏览器



Intent intent= new Intent();


  intent.setAction("android.intent.action.VIEW");


  Uri content_url = Uri.parse("http://www.cxybl.com");


  intent.setData(content_url);


  startActivity(intent);


这样子,android就可以调用起手机默认的浏览器访问。


二、指定相应的浏览器访问


1、指定android自带的浏览器访问


( “com.android.browser”:packagename   ;“com.android.browser.BrowserActivity”:启动主activity)


                Intent intent= new Intent();


                intent.setAction("android.intent.action.VIEW");


                Uri content_url = Uri.parse("http://www.cxybl.com");


                intent.setData(content_url);


                intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");


                startActivity(intent);


奇葩方式打开win8.1 ahci

进安全模式的,右键点开始-运行-msconfig-引导,勾上“安全引导”,重启,进bios中改为ahci,保存退出bios,重启就进入了win8的安全模式,然后再进msconfig中勾掉“安全引导”,再重启,看看是不是能正常进去win8了?

Yesterday is history, tomorrow is a mystery, but today is a gift.

很多人印象深刻的是乌龟大师的一句台词,There’s a saying: Yesterday is history, tomorrow is a mystery, but today is a gift. That’s why it is called the “present”. 这句话其实是Spencer Johnson 所著的 The Present 中最广为流传的一句。阿宝就是那个活在当下的人。有梦想,由过去,但阿宝在意的是每天一点一滴的生活。昨天已经过去,明天全然未知,我们能够把握的,只有今天。其实过好了每一天, 我们就能过好一生。