我正在数独上创建一个简单的 android 应用程序。有一天,我发现我的 APK 文件丢失了。有没有办法通过任何方式恢复它?我已经尝试过“从本地历史记录中恢复”,“更改我可以从所有博客中找到但没有用的依赖项和所有可能的解决方案。任何人都可以为此提出解决方案。当我通过我的 logcat 时,我能找到的唯一错误发现是“没有找到处理意图的活动{act=org.example.sudoku.about}
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.example.sudoku"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name="org.example.sudoku.Sudoku"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="org.example.sudoku.About"
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog">
<action android:name=".prefs"
android:label="@string/settings_title" />
</activity>
</application>
</manifest>
这是我的 about.java 和 about.xml 文件 about.java
package org.example.sudoku;
import org.example.sudoku.R;
import android.app.Activity;
import android.os.Bundle;
public class About extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.about);
}
}
关于.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/about_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/about_text"/>
</ScrollView>
日志猫:
06-01 07:44:46.890: E/AndroidRuntime(930): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=org.example.sudoku.About }
06-01 07:44:46.890: E/AndroidRuntime(930): at org.example.sudoku.Sudoku.onClick(Sudoku.java:36)