我有下一个布局的简单选项卡活动:
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff00" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff00" />
我使用按钮作为标签的指示器
tabHost.addTab(tabHost.newTabSpec("Tab1")
.setIndicator(new Button(this))
.setContent(new Intent(this, TabActivity1.class)));
tabHost.addTab(tabHost.newTabSpec("Tab2")
.setIndicator(new Button(this))
.setContent(new Intent(this, TabActivity2.class)));
在这种情况下,FrameLayout 总是在顶部有黑线和阴影效果(您可以在按钮下看到它):
问题是:我怎样才能摆脱这条线?在 Android 源代码中绘制它的方法在哪里?