この投稿に従って 、アプリケーションを初期化するアプリケーション クラスを追加します。次のようにしました: Initialisation.java
package com.thinline.dm21.init;
import android.app.Application;
import android.util.Log;
public class Initialisation extends Application{
public void onCreate() {
super.onCreate();
Log.i("Test","Executed");
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thinline.dm21"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="15" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name="com.thinline.dm21.calendrier.Calendrier"
android:label="@string/app_name"
android:configChanges="orientation" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:name="com.thinline.dm21.init.Initialisation">
</application>
</manifest>
しかし、logcat にメッセージが表示されません。私は何が欠けていますか?