Android アプリケーションでタブを使用する画面があります。タブウィジェットとフレームレイアウトの間に表示される線 (境界線のようなもの) があります。その行を取り除きたいのですが、それが何であるかを見つけることができません。Visibilty を非表示に設定することで、FrameLayout の一部であると判断しました。以下のコードを参照してください。
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fb8c10"
>
<ImageView
android:id="@+id/img_confirm_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/confirm_header"
/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dip"
android:background="#fb8c10"
android:tabStripEnabled="false"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/tab_bg"
/>
</LinearLayout>
</TabHost>
これは、現在のレイアウトと私がやろうとしていることのリンクです http://img441.imageshack.us/g/screenshot20110116at513.png/
オレンジ色のレイアウトは私のアプリで、灰色は私がやろうとしていることです。
灰色のスクリーンショットで、タブがフレームに流れ込む様子に注目してください。
リンクのお詫び、まだ画像を投稿できません:p
ありがとう!