0

Android のタブのスタイルを変更しtabhostたいのですが、背景の色だけを変更したくはありませんが、スタイル全体を変更します (たとえば、角を丸くするため)。

4

1 に答える 1

0

角が丸くなっていても、好みのスタイルのウィジェットを配置TabHostできますButton

Button myButton = new Button(this);
myButton.setText("My Button");
myButton.setBackgroundColor(Color.TRANSPARENT);
myButton.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.my_button_drawable_top, 0, 0);
TabHost.TabSpec myButtonTab = mTabHost.newTabSpec("tab1").setIndicator(myButton).setContent(intentPlayList);
mTabHost.addTab(myButtonTab);
于 2012-07-04T20:38:12.080 に答える