我的布局中有一个ToolBar和ViewPager,但我在ViewPager的第一行收到错误。 我的viewPager出了什么问题?
出现的错误是“错误:解析XML时出错:未绑定的前缀”。
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/br.com.pixells.simuladorbr"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbarListaJogos"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#DC143C"
app:subtitle="Teste"
app:theme="@style/Theme.Abar.Widget"
app:title="ToolBar" />
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<!--
This title strip will display the currently visible page title, as well as the page
titles for adjacent pages.
-->
<android.support.v4.view.PagerTitleStrip
android:id="@+id/pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:textColor="#fff" />
</android.support.v4.view.ViewPager>
</LinearLayout>
答案 0 :(得分:1)
您使用了&#34;工具&#34; ViewPager中属性的前缀,而不在根目录中声明XML命名空间。
添加
xmlns:tools="http://schemas.android.com/tools"
到您的LinearLayout来解决问题。