안녕하세요~ 가입하고 첫 질문을 올립니다.

제가 하단에 탭위젯을 올렸고 탭버튼을 약간 커스텀하였습니다.

그런 하단의 라인은 어떻게 해도 제거가 되지 않네요~

비활성화된 버튼을 크게 만들어서 라인을 제거 하거나 라인을 색을 바꿀수 있는 방법이 있나요??


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal"> 
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" > 
   <FrameLayout
       android:id="@android:id/tabcontent"
       android:layout_width="fill_parent"     
       android:layout_height="fill_parent"/>                 
   <TabWidget
       android:id="@android:id/tabs"                     
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:gravity="bottom" />
</TabHost>
</LinearLayout>