渲染问题:二进制XML文件行#-1:找不到开始标记

时间:2015-11-10 07:56:30

标签: android android-layout android-studio android-xml android-theme

最初我在Manifest android:theme="@style/AppTheme"文件中收到错误。我寻找解决方案,从这个解决方案Android Studio: Error in Layout Files - Header expected,我摆脱了这个错误。

但另一方面,我开始在我的所有布局预览中收到错误,例如enter image description here

上面图片的xml文件是

<?xml version="1.0" encoding="utf-8"?>
<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:context=".MainActivity" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Process Inbox"
        android:id="@+id/heading"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:gravity="center"
        android:textColor="#964acf"
        android:textStyle="bold" />

    <ExpandableListView
        android:id="@+id/inbox_expandable_list"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/heading">
    </ExpandableListView>

</RelativeLayout>

我尝试撤消更改但没有成功,任何人都可以指导我解决问题的原因或解决方案。

这是我的 app.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.abc.xyz"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'io.realm:realm-android:0.82.1'
    compile 'com.google.code.gson:gson:2.2.2'

}

1 个答案:

答案 0 :(得分:0)

有一个类似的问题herehere

在不同的拆分视图之间移动有问题的标签会在一秒钟内完成。