码迷,mamicode.com
首页 >  
搜索关键字:getbasecontext    ( 18个结果
为ImageView设置背景图片(代码中)
仅仅需三行代码: Resources resources = getBaseContext().getResources(); Drawable imageDrawable = resources.getDrawable(R.drawable.background_image); //图片在draw ...
分类:其他好文   时间:2017-06-26 21:15:43    阅读次数:139
android获得屏幕高度和宽度(display中getSize(Point)方法使用)
方法一: public static int SCREEN_WIDTH; public static int SCREEN_HEIGHT; //获取屏幕 WindowManager wm = (WindowManager) getBaseContext().getSystemService( Con ...
分类:移动开发   时间:2016-09-20 16:28:35    阅读次数:347
getContext() , getApplicationContext() , getBaseContext()的区别
1、View.getContext(): Returns the context the view is currently running in. Usually the currently active Activity. 当前Activity的上下文 2、Activity.getApplica
分类:移动开发   时间:2016-02-03 15:28:22    阅读次数:203
[转]Android之Context和Activity互相转换
1、context转换为activityActivity activity = (Activity) context;2、从activity得到context在activity的方法中用context =getBaseContext();而在activity中用context =this即可.
分类:移动开发   时间:2015-12-25 18:57:10    阅读次数:230
Android 在程序中重启APP的方法
1. 方法一 利用PackageManager类Intent i = getBaseContext().getPackageManager() .getLaunchIntentForPackage( getBaseContext().getPackageName() ); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startAc...
分类:移动开发   时间:2015-08-20 19:03:50    阅读次数:392
为ImageView设置背景图片(代码中)
只需三行代码:Resources resources = getBaseContext().getResources(); Drawable imageDrawable = resources.getDrawable(R.drawable.background_image); //图片在drawable目录下 mImageView.setBackgroundDrawable(imageDraw...
分类:其他好文   时间:2015-08-19 11:14:19    阅读次数:172
Andorid开发(二十二)——获取上下文getApplicationContext()、Activity.this、 getBaseContext
getApplicationContext() //返回应用的上下文,生命周期是整个应用,应用摧毁它才摧毁Activity.this的context //返回当前activity的上下文,属于activity ,activity 摧毁他就摧毁getBaseContext() //返回由构造函数指.....
分类:移动开发   时间:2015-07-12 17:01:07    阅读次数:137
Android 基础一 TextView,Style样式,Activity 传值,选择CheckBox 显示密码
1.修改TextView字体mTextView = (TextView) findViewById(R.id.textview1);mTextView.setText("I am here");Resources resources = getBaseContext().getResources()...
分类:移动开发   时间:2015-07-11 17:57:10    阅读次数:152
android开发图表achartengine之饼图
第一步:从工厂里面获取一个饼图对象GraphicalViewgraphicalView=ChartFactory.getPieChartView(getBaseContext(),dataset,renderer);//饼状图第二步:设置dataset数据double[]values={412.0,542.0,486.0,900.1}; CategorySeriesdataset=buildCategoryDataset("测试饼图",value..
分类:移动开发   时间:2015-06-19 13:47:46    阅读次数:147
android开发图表achartengine之柱状图
1.下载achartengine库 http://code.google.com/p/achartengine/downloads/list 2.GraphicalViewgraphicalView; graphicalView=ChartFactory.getBarChartView(getBaseContext(),dataset,renderer,type);//柱状图 graphicalView=ChartFactory.getPieChartView(getBaseContext()..
分类:移动开发   时间:2015-06-09 14:04:40    阅读次数:155
18条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!