仅仅需三行代码: Resources resources = getBaseContext().getResources(); Drawable imageDrawable = resources.getDrawable(R.drawable.background_image); //图片在draw ...
分类:
其他好文 时间:
2017-06-26 21:15:43
阅读次数:
139
方法一: public static int SCREEN_WIDTH; public static int SCREEN_HEIGHT; //获取屏幕 WindowManager wm = (WindowManager) getBaseContext().getSystemService( Con ...
分类:
移动开发 时间:
2016-09-20 16:28:35
阅读次数:
347
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
1、context转换为activityActivity activity = (Activity) context;2、从activity得到context在activity的方法中用context =getBaseContext();而在activity中用context =this即可.
分类:
移动开发 时间:
2015-12-25 18:57:10
阅读次数:
230
1. 方法一 利用PackageManager类Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage( getBaseContext().getPackageName() );
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startAc...
分类:
移动开发 时间:
2015-08-20 19:03:50
阅读次数:
392
只需三行代码:Resources resources = getBaseContext().getResources();
Drawable imageDrawable = resources.getDrawable(R.drawable.background_image); //图片在drawable目录下
mImageView.setBackgroundDrawable(imageDraw...
分类:
其他好文 时间:
2015-08-19 11:14:19
阅读次数:
172
getApplicationContext() //返回应用的上下文,生命周期是整个应用,应用摧毁它才摧毁Activity.this的context //返回当前activity的上下文,属于activity ,activity 摧毁他就摧毁getBaseContext() //返回由构造函数指.....
分类:
移动开发 时间:
2015-07-12 17:01:07
阅读次数:
137
1.修改TextView字体mTextView = (TextView) findViewById(R.id.textview1);mTextView.setText("I am here");Resources resources = getBaseContext().getResources()...
分类:
移动开发 时间:
2015-07-11 17:57:10
阅读次数:
152
第一步:从工厂里面获取一个饼图对象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
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