Hey sorry to bother you guys im new to android dev and ive embedded a
textview into a scrollview into a tab but it doesnt seem to be working
for some reason below is the first part of my main.xml it goes on for
a quite a way as the 3rd tab has a relative layout with lots of
pictures etc in i have makred the section which is causing the
problem. Im sure im just missing something simpole and stupid lol.

<?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">
        <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">
//*****************HERE*****************************************

                        <ScrollView
                        android:id="@+id/ScrollView01"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent" >
                <TextView
                        android:id="@+id/fixtures"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"
                        android:text="@string/fixtures" />
            </ScrollView>

//*****************HERE*****************************************
            <TextView
                android:id="@+id/results"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:text="Results go here" />
                        <ScrollView
                                android:id="@+id/ScrollView02"
                                android:layout_width="fill_parent"
                                android:layout_height="fill_parent">
                                <RelativeLayout
                        android:id="@+id/bio"
                                        android:layout_width="fill_parent"
                                android:layout_height="fill_parent">
                                <ImageView

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to