我已经从github克隆了这个项目,并在androidstudio中打开了它。我是通过下载zip文件并在androidstudio中打开project来实现的。这个克隆的项目是在sdkversion23上实现的。
通过这样做,项目构建是成功的,但是我在manifest.xml文件和main_activity.xml文件中得到了“android:attribute is not allowed here”错误。这说明所有属性在其他项目中都正常工作。
下面是manifest.xml文件的代码。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.quakereport">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".EarthquakeActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
而main.xml文件是:
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
请大家帮忙!!
暂无答案!
目前还没有任何答案,快来回答吧!