选项卡主机不显示所有元素

时间:2014-02-25 04:36:09

标签: android android-xml

helllo,我尝试创建标签视图,在我的情况下必须有一些元素,它们是搜索栏和水平线性布局,带有2个textview,但它只显示元素这样位于顶部。 就像在这张图片中一样:

enter image description here

此标签的XML代码:

                       <LinearLayout
                            android:id="@+id/tvTab2"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:orientation="vertical"
                            >
                        <LinearLayout
                                android:orientation="horizontal"
                                android:layout_width="match_parent"
                                android:layout_height="match_parent">
                            <TextView
                                    android:text="@string/bspa_count_of_hours"
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content">
                            </TextView>
                            <TextView
                                    android:id="@+id/bspa_count_of_hours_value"
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content">
                            </TextView>
                        </LinearLayout>
                        <SeekBar
                                android:id="@+id/bspa_seekbar_count_of_hours"
                                android:layout_width="match_parent"
                                android:layout_height="wrap_content"
                                />

                    </LinearLayout>

1 个答案:

答案 0 :(得分:1)

试试这个: -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tvTab2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="bspa_count_of_hours" >
        </TextView>

        <TextView
            android:id="@+id/bspa_count_of_hours_value"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TextView>
    </LinearLayout>

    <SeekBar
        android:id="@+id/bspa_seekbar_count_of_hours"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>