在操作栏中设置图像

时间:2014-09-18 11:52:29

标签: android android-actionbar

我已使用

操作栏中设置了图片

ActionBar.setBackgroundDrawable(getResources().getDrawable(R.drawable.header));

并从"android:icon="@drawable/header"

中删除了manifest.xml

但是我得到的图像与其他图像重叠。我正在附上快照。

enter image description here

我想只显示我的图片。

2 个答案:

答案 0 :(得分:1)

使用此代码:

getActionBar().setIcon(android.R.color.transparent);

答案 1 :(得分:1)

getActionBar().setDisplayShowHomeEnabled(false);

在您的代码中添加此项,您将获得所需的输出!!!