2018年1月4日木曜日

Applicationクラスのカスタマイズ

Applicationクラスを継承したカスタマイズ用クラスを作成

public class MyApplication extends Application  {

    @Override
    public void onCreate() {
        super.onCreate();

    }
}

マニフェストファイルにクラスを追加

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:name=".MyApplication"
        android:label="@string/app_name"

0 件のコメント:

コメントを投稿

G-Tracker

G-Tracker is an application that performs tracking of the current location using GPS built in Android. You can also get navigation an...