摘要: ImageView.ScaleTypehttp://developer.android.com/reference/android/widget/ImageView.ScaleType.htmlCENTER//Center the image in the view, but perform no scaling.//在view中心位置显示图片,但不进行缩放//如果图片过大,则裁剪显示中心一部分//如果图片较小,则在imageView中心显示,不会充满imageViewCENTER_CROPScale the image uniformly (maintain the image's 阅读全文
posted @ 2013-10-16 23:47 jasonWang1w 阅读(675) 评论(0) 推荐(0)
摘要: 1 TestBroadcastReceiver tbr = new TestBroadcastReceiver();2 Intent intent = new Intent();3 intent.setAction(intent.ACTION_EDIT);4 MainActivity.this.sendBroadcast(intent); 1 //使用匿名内部类2 button.setOnClickListener(new View.OnClickListener() {3 public void onClick(View v) {4 ... 阅读全文
posted @ 2012-10-31 21:20 jasonWang1w 阅读(204) 评论(0) 推荐(0)