View customNav = LayoutInflater.from(this).inflate(R.layout.activity_custom_layout, null);
actionBar.setCustomView(customNav);
actionBar.setDisplayShowCustomEnabled(true);
final Context context1 = this;
ImageButton ibItem1 = (ImageButton) customNav.findViewById(R.id.refresh);
ibItem1.setPadding(280, 0, 0, 0);
ibItem1.setVisibility(View.INVISIBLE);
ibItem1.setOnClickListener(new View.OnClickListener()
{ @Override public void onClick(View view) { } });
我已将自定义视图与图像按钮添加到android操作栏,图像按钮大小为 小,所以需要改变动作条的大小以获得合适的图像尺寸吗?
答案 0 :(得分:0)
我不确定您是否可以更改操作栏的大小,但您当然可以使用
showAsAction = “ifRoom”
项目标签中的可使项目直接显示在操作栏中。如果没有足够的空间,该项目将显示在动作溢出中。