【问题标题】:round profile image in android [duplicate]android中的圆形轮廓图像[重复]
【发布时间】:2015-05-15 07:02:03
【问题描述】:

我使用下面的代码在android中制作圆形头像

http://www.androidhub4you.com/2014/10/android-custom-shape-imageview-rounded.html

但在我的主要活动中,我使用 ListFragment 而不是 Activity

imageViewRound = ImageView)parentView.findViewById(R.id.imageView_round);
Bitmap icon = BitmapFactory.decodeResource(getResources(),R.drawable.noimage_square);
imageViewRound.setImageBitmap(icon);

我收到了这个错误

05-15 12:21:27.359: E/AndroidRuntime(25107): Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ImageView.setImageBitmap(android.graphics.Bitmap)' on a null object reference

【问题讨论】:

标签: android rounding profile profile-picture


【解决方案1】:

试试这些

 com.androidhub4you.crop.RoundedImageView imageViewRound =(com.androidhub4you.crop.RoundedImageView) parentView.findViewById(R.id.imageView_round);

【讨论】:

  • 错误依然存在。
  • 出现同样的错误还是不同的错误??
  • 同样的错误。 05-15 13:58:32.132: E/AndroidRuntime(29214): 由: java.lang.NullPointerException: 尝试调用虚拟方法 'void com.toptechinfo.chachalanka.RoundedImageView.setImageBitmap(android.graphics.Bitmap)' on空对象引用
  • 使用这些“imageViewRound .setImageBitmap(android.graphics.Bit‌​map)”而不是“com.toptechinfo.chachalanka.RoundedImageView.setImageBitmap(android.graphics.Bit‌​map)'”
  • android.graphics.Bitmap 无法解析为变量
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2021-01-23
  • 2020-05-23
  • 2015-04-26
  • 1970-01-01
  • 1970-01-01
  • 2019-01-26
相关资源
最近更新 更多