web-dev-qa-db-ja.com

V / FA:非アクティブ、サービスからの切断

2つのAndroidプロジェクトでこの問題に直面しています。 1つではFirebaseからRecyclerviewにデータを取得しようとし、もう1つでは電話番号を使用してログインしようとしましたが、どちらの場合でもlogcatはV/FAを表示しています:

 Inactivity, disconnecting from the service
20
Wahdat Kashmiri

Inactivity, disconnecting from the service

この問題を解決するには、いくつかの手順に従う必要があります。 Reason: You face this problem because in the background there are few-thread and the process is running in the Android studio which uses the connection of firebase and your process not get the connection.

手順:

  1. モバイル/エミュレーターからアプリをアンインストールします。
  2. 次に、Androidスタジオのメインメニューバーの[ファイル]オプションに移動します。
  3. 次に、Invalidatecasha/restartをクリックします。

数分かかるだけで、Android studioが再起動し、そのエラーはなくなります。すべてのバックエンドスレッドとプロセスが閉じられているためです。

ハッピーコーディング。

3
Sohaib Aslam