自定义imageview未添加到线性布局运行时中

时间:2014-08-14 09:57:11

标签: android imageview android-linearlayout android-custom-view

我需要在线性布局运行时添加圆形图像视图。

我尝试了下面提到的代码,但它没有给我一个解决方案,但如果我尝试默认的图像视图它工作正常,但在自定义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);

}

0 个答案:

没有答案