You can use getTabHost().getTabWidget().setDividerDrawable(R.drawable.empty_divider) method,
where R.drawable.empty_divider simple shape with 0px size, such as
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<size
android:width="0px"
android:color="@android:color/black"
android:dashWidth="0px"
android:dashGap="0px" />
</shape>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…