0

我正在数独上创建一个简单的 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)
4

3 回答 3

0

如果更新了构建工具,请检查您的 SDK 管理器。

于 2013-05-30T07:39:15.003 回答
0

我不确定。但我认为您可能必须删除以下导入。

import org.example.sudoku.R;

然后,再次运行。

于 2013-05-30T07:41:45.253 回答
0

尝试再次重建您的 apk 可能会有所帮助。转到 android studio 中的菜单搜索“Build”,然后搜索“BUILD APk(s)”。它将再次创建一个apk文件

于 2018-08-22T19:44:56.457 回答