我已设置操作栏背景
getActionBar().setBackgroundDrawable(res.getDrawable(R.drawable.top_bar_bg));
当我去另一个活动并回到原来的
时我只丢失了背景,标题和图标保持原样
答案 0 :(得分:0)
无论你在当前活动中尝试在oncreate中实现这一点,所以只需在onresume()方法中编写代码试试这个我认为它会解决如
@
Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
//here u write your code to achive i think this is your code
//getActionBar().setBackgroundDrawable(res.getDrawable(R.drawable.top_bar_bg));
}