我正在尝试使用CircleImageView作为ActionBar图标(如WhatsApp中的聊天活动)。我试过this approach:
CircleImageView actionBarIcon_Profile = new CircleImageView(this);
actionBarIcon_Profile.setImageDrawable(getResources().getDrawable(R.drawable.my_picture));
actionBarIcon_Profile.setLayoutParams(new LayoutParams(48, 48));
actionBarIcon_Profile.setId(R.id.actionBarIcon_Profile);
getActionBar().setIcon(R.id.actionBarIcon_Profile);
ids.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="actionBarIcon_Profile"/>
</resources>
似乎ActionBar setIcon()只接受drawables作为输入。我可以设置a circular shape xml and put it in my drawable folder,但即使我必须更改该xml文件的背景以满足我的需要。有什么建议吗?
答案 0 :(得分:0)
link - http://javatechig.com/android/actionbar-with-custom-view-example-in-android
查看此链接是否有助于您