片段溢出标签主机

时间:2016-02-21 04:35:16

标签: android android-fragments

我试图实现一个控制片段的标签主机。根据所选的选项卡,片段将从api调用中获取不同的数据。

问题是片段占据了标签选择器所在的空间。我看到标签文本,但我的片段就在它背后。

我希望片段从选项卡选择器的正下方开始。

这是UI的图片:

http://postimg.org/image/sxj58t0qx/

这是活动的xml文件:

=AGGREGATE(15,6,$C$1:$C$9/($B$1:$B$9=A1),1)

这就是碎片本身:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:id="@+id/container"
    android:layout_width="match_parent" android:layout_height="match_parent"
    tools:context=".MainActivity" tools:ignore="MergeRootFrame">

    <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        tools:context="com.example.madelenko.movierating.MainActivity">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <android.support.design.widget.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:theme="@style/AppTheme.AppBarOverlay">

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary"
                    app:popupTheme="@style/AppTheme.PopupOverlay" />

            </android.support.design.widget.AppBarLayout>

            <android.support.v4.app.FragmentTabHost
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/tabhost">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="vertical">
                        <TabWidget
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:id="@+id/tabs"
                            android:orientation="vertical"/>

                        <FrameLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:id="@+id/fake_frame">

                            <GridView xmlns:android="http://schemas.android.com/apk/res/android"
                                android:id="@+id/gridview"
                                android:layout_width="match_parent"
                                android:layout_height="match_parent"
                                android:numColumns="@integer/column_count"
                                android:gravity="center"
                                android:verticalSpacing="@dimen/grid_vert_spacing"
                                android:stretchMode="columnWidth"/>
                        </FrameLayout>
                    </LinearLayout>

            </android.support.v4.app.FragmentTabHost>


        </LinearLayout>
    </android.support.design.widget.CoordinatorLayout>
</FrameLayout>

最后,这是我在活动中的oncreate方法:

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

    <!-- View to be populated with a movie poster-->
    <ImageView
        android:id="@+id/image_thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"/>
    <!--View to be populated with the movie's title and rating-->
    <TextView
        android:layout_width="@dimen/image_width"
        android:layout_height="@dimen/text_overlay_height"
        android:background="#00000000"
        android:textColor="#00000000"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:id="@+id/overlay_text"/>
</RelativeLayout>

如何正确定位?

1 个答案:

答案 0 :(得分:1)

TabHost已弃用。您应该使用TabLayout代替。