Hi All,
I have a simple question... How can I make a simple white background under my tab style.. This is my source main source code.xml
I was thinking to make a new LinearLayout with an android:background="#ffffff"
Can anyone help thinking.. i'm an beginning android programmer ..
Thanks a lot!!
Here is my source code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Tabinterface -->
<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"
>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
</TabHost>
<!-- Tabinterface -->