我需要在线性布局运行时添加圆形图像视图。
我尝试了下面提到的代码,但它没有给我一个解决方案,但如果我尝试默认的图像视图它工作正常,但在自定义imageview(com.mikhaellopez.circularimageview.CircularImageView)中创建问题。
任何人都可以建议或帮助我从这里出来。
for (int i = 0; i < al_friends.size(); i++)
{
ImageView iv_friend_profile = new com.mikhaellopez.circularimageview.CircularImageView(ProfileActivity.this);
iv_friend_profile.setImageResource(R.drawable.ic_launcher);
iv_friend_profile.setTag(i);
iv_friend_profile.setOnClickListener(new FriendProfileClicker());
ll_friends.addView(iv_friend_profile);
}