我希望我的Android选项卡看起来像官方TWitter应用程序中的那样平坦而简单。如何覆盖默认(浅色)主题并使用样式/主题定义更改选项卡的背景图像?

最佳答案

您可以通过代码调整标签-这是我的应用摘录,但您也可以直接分配主题而不是背景图片。 (我还没有使用通过xml属性的方法,不确定是否可以通过某种方式使用它)。

private void initTabs() {
    tabs = (TabHost) findViewById(R.id.tabhost);
    tabs.setup();
    tabs.setBackgroundResource(R.drawable.bg_midgray);

   TabHost.TabSpec spec;

   // Location info
   txtTabInfo = new TextView(this);
   txtTabInfo.setText("INFO");
   txtTabInfo.setPadding(0, 5, 0, 0);
   txtTabInfo.setTextSize(11);

   txtTabInfo.setBackgroundResource(R.drawable.bg_tab_left_active_right_inactive);
   txtTabInfo.setTextColor(Color.DKGRAY);
   txtTabInfo.setGravity(Gravity.CENTER_HORIZONTAL);
   txtTabInfo.setHeight(39);
   spec = tabs.newTabSpec("tabInfo");
   spec.setContent(R.id.tabInfo);
   spec.setIndicator(txtTabInfo);
   tabs.addTab(spec);
   ...
}

关于android - 如何在Android中更改标签样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3029074/

10-10 07:06