最初我在Manifest
android:theme="@style/AppTheme"
文件中收到错误。我寻找解决方案,从这个解决方案Android Studio: Error in Layout Files - Header expected,我摆脱了这个错误。
上面图片的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'
}