誰かが次のコードスニペットの仕組みを説明できますか?Firebase.setAndroidContext(this)はどのように動作し、それは何ですか?
public class FireBaseApp extends Application {
@Override
public void onCreate() {
super.onCreate();
Firebase.setAndroidContext(this);
}
}
誰かが次のコードスニペットの仕組みを説明できますか?Firebase.setAndroidContext(this)はどのように動作し、それは何ですか?
public class FireBaseApp extends Application {
@Override
public void onCreate() {
super.onCreate();
Firebase.setAndroidContext(this);
}
}
Context
のAndroidアプリ特定の事柄を行うために使用することができるクラスです。
あなたはContext
クラスルックhere
の方法をご覧になりたい方Firebaseは、あなたがそれを設定する必要が理由です、あなたのアプリケーションの範囲でこれらのメソッドにアクセスする必要があります。
Application
クラスがContext
クラスのインスタンスであるため、this
引数を使用してFirebase.setAndroidContext(this);
を呼び出すことができます。
FireboxライブラリをAndroidコンテキストで初期化します。 Android Developersに応じ
The Firebase library must be initialized once with an Android Context. This
must happen before any Firebase reference is created or used.
コンテキスト::Firebaseドキュメントから
It allows access to application-specific resources and classes, as well as
up-calls for application-level operations such as launching activities,
broadcasting and receiving intents, etc.
私はこれがうまく説明して願っています。
も愛しています... ansに感謝ans –
@MiMahbubあなたは私の答えをupvoteできますか? –
bro私を助けてください... http://stackoverflow.com/questions/43955696/how-multiple-tabs-carry-icon-with-text-in-a-fragment –
愛しているよ、それを持って.... @ Empty2k12 –