と呼ばれることはありませんカスタムアプリケーションクラスのonCreate()は、私は、カスタム・アプリケーション・クラスに解析を初期化しようとしている
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.someproject">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".SomeApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AnotherActivity"/>
</application>
</manifest>
しかし、私のカスタムアプリケーションは決して呼び出されません。私はonCreateメソッドにログとブレークポイントを入れて、プロジェクトをクリーンにし、プロジェクトを再構築し、Android Studioを閉じて再オープンし、アンインストールして再インストールしてみました...そう、助けが必要です。
ありがとうございました!
デバッグされていないことをどのようにチェックしますか?ログ、smthn else? –
このアクティビティが呼び出されているアクティビティでインテントフラグを宣言しましたか? – Swr7der
@ViktorYakuninはい!ログ、ブレークポイント、System.out ... – fsnasser