0

我已经编辑并添加了一个程序的功能,该程序涉及添加另一个类(不是活动类),从那时起当我将应用程序加载到我的 android 设备上时,我看不到图标出现,但应用程序出现在应用程序管理器中。我没有显示任何错误,并已注释掉新类的每个部分以将其转回原始应用程序。谁能告诉我问题最有可能出在清单、main.xml 还是活动类中?或者他们是否遇到过类似的问题?

由于公司政策,无法发布代码。

<?xml version="1.0" encoding="utf-8"?>
<manifest 
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myAppName" <!-- real package name cannot be supplied -->
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="18" />


        <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAINACTIVITY" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
     <provider
        android:name="com.example.MyAppName.ProviderClassName"
        android:authorities="com.example.MyAppName.ProviderClassName"
     />

    </application>



</manifest>
4

0 回答 0