我一直在开发昨天发布到Play商店的应用程序,但是今天早上我重新打开它进行更改时,AndroidManifest.xml
,activity_main.xml
和styles.xml
个文件。
编辑:这是文件和错误
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:id="@+id/the_wv"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
错误:
第2、3和4行:未注册URI
第5、6和7行:此处不允许使用attribute:xxxx
第9行:此处不允许使用元素WebView
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:statusBarColor">@color/mainColor</item>
</style>
</resources>
错误:
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appname">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:screenOrientation="portrait"
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
错误:
第2行:未注册URI
第6、7、9、10、11和13行:此处不允许使用xxxxxx属性
第14行:未解决的类“ MainActivity”
有什么主意为什么会突然抛出所有这些错误?
答案 0 :(得分:0)
清理您的项目,然后使用以下步骤重新构建:
第1步:构建->清理项目
第2步:构建->重建项目
答案 1 :(得分:0)
您可以尝试使Android Studio缓存无效。
文件->使缓存无效/重新启动->使和无效无效