0
我有一個問題與Android Studio中運行應用程序時,我有以下錯誤:Android的工作室:會話「應用」:錯誤下水活動
$ adb shell am start -n "com.ta94.xahmad.theerror/com.ta94.xahmad.theerror.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while executing: am start -n "com.ta94.xahmad.theerror/com.ta94.xahmad.theerror.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.ta94.xahmad.theerror/.MainActivity }
Error while Launching activity
我試圖在計算器上每一個解決方案,但沒有任何工程。 我想告訴你,如果我創建了一個新的項目,並沒有做任何事情,但單擊運行,這發生在每一個項目,例如,我也有以下錯誤
我試過如下:
- 重新安裝Android Studio中
- 更新SDK
- 清理項目
- 未經檢查的即時運行
- 重建項目
- 改變
- 刪除.gradle和.idea的項目文件夾,並重新
- 編輯配置>安裝標誌> -r
但沒有任何工程...
Manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ta94.xahmad.theerror">
<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:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
佈局:
<?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="com.ta94.xahmad.theerror.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
也許一個愚蠢的問題,但你嘗試清除應用程序數據和卸載應用程序?即時運行將一些奇怪的文件保存在應用程序緩存文件夾中,這對我來說曾經造成過很奇怪的問題 – WindRider