我怎样才能在我的布局中解决这个问题:“错误:解析XML时出错:未绑定的前缀

时间:2016-02-19 05:44:06

标签: android

这是选项卡布局的xml文件,其中定义工具栏,viepage 所以如何解决这个错误。我不知道如何解决它请帮助我或建议我在哪里做错可能是非常简单的事情,但我被困了。有什么想法吗?请你好      

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:fitsSystemWindows="true"
            android:minHeight="?attr/actionBarSize"
            android:padding="2dp"
            app:titleMarginStart="20dp"
            app:titleTextAppearance="@style/AppTheme.Toolbar.Title" />

        <com.tutorialsbuzz.slidingtabdemo.SlidingTabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/holo_orange_dark" />

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#e5e5e5" >
        </android.support.v4.view.ViewPager>

    </LinearLayout>

3 个答案:

答案 0 :(得分:0)

您需要在根元素中添加xmlns属性。类似的东西:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"   
    xmlns:app="http://schemas.android.com/apk/res/com.tutorialsbuzz.slidingtabdemo"

答案 1 :(得分:0)

试试这段代码。 并检查你的pakage中是否有tabstrip.java文件。这是正常工作所必需的

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_height="match_parent" android:layout_width="match_parent">

            <android.support.v7.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/toolbar"
                android:background="@color/primary"
                android:minHeight="?attr/actionBarSize">
            </android.support.v7.widget.Toolbar>


            <com.example.SlidingTabLayout
                android:layout_below="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/sliding_tab">  
            </com.example.SlidingTabLayout>


            <android.support.v4.view.ViewPager
                android:id="@+id/pager"
                android:layout_below="@+id/sliding_tab"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            </android.support.v4.view.ViewPager>
        </RelativeLayout>

答案 2 :(得分:0)

你可能需要遵循这个,

您需要向父节点添加一些内容或使用命名空间

第一个节点需要添加:xmlns:android="http://schemas.android.com/apk/res/android"

选中stack answer

希望这有帮助。