欢迎来到天天文库
浏览记录
ID:18761661
大小:49.00 KB
页数:8页
时间:2018-09-22
《android开发小知识大全》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、/***为程序创建桌面快捷方式*/privatevoidaddShortcut(){Intentshortcut=newIntent("com.android.launcher.action.INSTALL_SHORTCUT");//快捷方式的名称shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,getString(R.string.app_name));shortcut.putExtra("duplicate",false);//不允许重复创建//指定当前的Activity为快捷方式启动的对象:如//com.everest
2、.video.VideoPlayer//注意:ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序ComponentNamecomp=newComponentName(this.getPackageName(),"."+this.getLocalClassName());shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT,newIntent(Intent.ACTION_MAIN).setComponent(comp));//快捷方式的图标ShortcutIconResourceiconRe
3、s=Intent.ShortcutIconResource.fromContext(this,R.drawable.icon);shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,iconRes);sendBroadcast(shortcut);}/***删除程序的快捷方式*/privatevoiddelShortcut(){Intentshortcut=newIntent("com.android.launcher.action.UNINSTALL_SHORTCUT");//快捷方式的名称shortcut.
4、putExtra(Intent.EXTRA_SHORTCUT_NAME,getString(R.string.app_name));//指定当前的Activity为快捷方式启动的对象:如//com.everest.video.VideoPlayer//注意:ComponentName的第二个参数必须是完整的类名(包名+类名),否则无法删除快捷方式StringappClass=this.getPackageName()+"."+this.getLocalClassName();ComponentNamecomp=newComponentName(this.getPa
5、ckageName(),appClass);shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT,newIntent(Intent.ACTION_MAIN).setComponent(comp));sendBroadcast(shortcut);}全屏显示this.requestWindowFeature(Window.FEATURE_NO_TITLE);this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.Lay
6、outParams.FLAG_FULLSCREEN);横竖屏显示privatevoidchangedScreen(){intrequest=this.getRequestedOrientation();if(request==-1){Toast.makeText(TaskRunActivity.this,"None1",Toast.LENGTH_SHORT).show();}else{if(getRequestedOrientation()==ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE){this.setRequestedO
7、rientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);}elseif(getRequestedOrientation()==ActivityInfo.SCREEN_ORIENTATION_PORTRAIT){this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);}}}获取手机分辩率DisplayMetricsdm=newDisplayMetrics();this.getWindowManager().getDefaultDi
8、splay
此文档下载收益归作者所有