添加Tab小部件时没有指定方向



我在eclipse中创建了一个新的Android项目,并试图添加Tab小部件,但我得到一个错误说"没有指定方向,默认是水平的。"这是动态添加子元素时常见的bug来源。"我试着把android:orientation="horizontal">谁能告诉我如何解决这个问题?

代码为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.checktabs.MainActivity$PlaceholderFragment" >
    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="43dp" >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >
            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </TabWidget>
            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >
                <LinearLayout  <-error->
                    android:id="@+id/tab1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>
                <LinearLayout   <-error->
                    android:id="@+id/tab2"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>
                <LinearLayout   <-error->
                    android:id="@+id/tab3"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>
            </FrameLayout>
        </LinearLayout>
    </TabHost>
</RelativeLayout>

只需从框架布局中删除所有线性布局,并尝试从活动中动态添加选项卡。

查看此示例以获取更多详细信息。Android TabWidget示例

由于lint规则,android:orientation属性对于xml布局中的所有LinearLayout项是强制性的。

看到https://android-review.googlesource.com//c/49060/2/线头/libs/lint_checks/src/main/java/com/android/tools/lint/checks/InefficientWeightDetector.java

你只需要添加任何你需要的方向(最有可能的是垂直)。

相关内容

  • 没有找到相关文章

最新更新