gpt4 book ai didi

android - 错误 :(7) Error parsing XML: junk after document element

转载 作者:行者123 更新时间:2023-11-30 02:00:50 27 4
gpt4 key购买 nike

所以基本上是这个栗子...我看到这个问题被问了很多,但无法将他们的解决方案与我的解决方案联系起来,所以也许你可以另外帮助我。

这是我的 activity_splash.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primary_dark"
android:id="@+id/imgLogo"/>

<ImageView
android:id="@+id/imgLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/splash"
android:contentDescription=""
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<TextView
android:id="@+id/AppVersion"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:textSize="14sp"
android:textColor="@android:color/white"
android:gravity="center_horizontal"
android:layout_alignParentBottom="true" />

<ProgressBar
android:id="@+id/progress_bar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_below="@+id/imgLogo"/>

<com.app.tvng.blogpress.views.VerticalTextView
android:id="@+id/companyname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_alignParentBottom="true"
android:layout_marginLeft="3dip"
android:layout_marginBottom="4dip"
android:padding="4dip"
android:textSize="12sp"
android:textColor="@color/white"
android:text="@string/copyright"/>

</RelativeLayout>

谢谢你的帮助

最佳答案

尝试包含工具命名空间:xmlns:tools="http://schemas.android.com/tools"并使用 tools:background="@color/primary_dark" 而不是 android:background="@color/primary_dark"

像这样:

<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"
tools:background="@color/primary_dark"
android:id="@+id/imgLogo">

关于android - 错误 :(7) Error parsing XML: junk after document element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31506631/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com