我正在创建一个Android应用程序,我需要更改ActionBarTabs
的指示器颜色。我正在使用Sherlock库来实现ActionBarTabs
。
如何在Sherlock ActionBar中更改ActionBarTabs
的默认指示颜色?
ActionBar actionBar = getSupportActionBar();
// Hide Actionbar Icon
actionBar.setDisplayShowHomeEnabled(false);
// Hide Actionbar Title
actionBar.setDisplayShowTitleEnabled(false);
// Create Actionbar Tabs
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
tariffPlanJSON = getIntent().getExtras().getString("jsondata");
try {
JSONObject jsonObject = new JSONObject(tariffPlanJSON);
JSONArray jsonArray = jsonObject.getJSONArray("payload");
// going through the all tariff plans to see payload has which types of plans.
for(int index = 0; index < jsonArray.length(); index++) {
tariffPlan.add(jsonArray.getJSONObject(index).getString("plantype"));
}
} catch (JSONException e) {
e.printStackTrace();
}
Iterator<String> tariffPlansIterator = tariffPlan.iterator();
mActionBarTab = new Tab[tariffPlan.size()];
int index = 0;
while(tariffPlansIterator.hasNext()) {
String planType = tariffPlansIterator.next();
// creating a new tabs and setting the text to it.
mActionBarTab[index] = actionBar.newTab().setText(planType);
mActionBarTab[index].setTabListener(this);
actionBar.addTab(mActionBarTab[index]);
++index;
}
提前致谢。
答案 0 :(得分:1)
使用ActionbarStyleGenerator设置操作栏的样式。这是迄今为止最简单,最直观的方式。
如何:
使用UI为不同的项目选择颜色 完成后点击“DOWNLOAD .ZIP” ZIP文件包含您必须在项目res / layout和res / drawableXXXX文件夹中复制的资源文件