IDが生成されたときに、サービスの起動を行うようにした
ついでに、サービスの名前も変えた
This commit is contained in:
parent
4c4930ce65
commit
16265d5d31
|
@ -35,7 +35,7 @@
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<service android:name=".TestService" />
|
<service android:name=".SurveillanceService" />
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
|
@ -14,7 +14,6 @@ import android.content.pm.PackageManager;
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Handler;
|
|
||||||
import android.os.Vibrator;
|
import android.os.Vibrator;
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
@ -134,7 +133,7 @@ public class MainActivity extends AppCompatActivity {
|
||||||
}
|
}
|
||||||
registerReceiver(receiver, intentFilter);
|
registerReceiver(receiver, intentFilter);
|
||||||
|
|
||||||
startForegroundService(new Intent(this, TestService.class));
|
startForegroundService(new Intent(this, SurveillanceService.class));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@ package com.example.childguard;
|
||||||
import static android.content.ContentValues.TAG;
|
import static android.content.ContentValues.TAG;
|
||||||
import static android.content.Context.MODE_PRIVATE;
|
import static android.content.Context.MODE_PRIVATE;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
@ -95,6 +97,7 @@ public class SettingFragment extends Fragment {
|
||||||
SharedPreferences.Editor editor = sharedPreferences1.edit();
|
SharedPreferences.Editor editor = sharedPreferences1.edit();
|
||||||
editor.putString("ID", documentReference.getId());
|
editor.putString("ID", documentReference.getId());
|
||||||
editor.apply();
|
editor.apply();
|
||||||
|
startTestService();
|
||||||
|
|
||||||
Toast.makeText(getActivity(), "初回登録", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), "初回登録", Toast.LENGTH_SHORT).show();
|
||||||
getParentFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.fragmentContainerView, GenerateQrFragment.newInstance(documentReference.getId())).commit();
|
getParentFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.fragmentContainerView, GenerateQrFragment.newInstance(documentReference.getId())).commit();
|
||||||
|
@ -106,4 +109,11 @@ public class SettingFragment extends Fragment {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
private void startTestService() {
|
||||||
|
Context context = getContext();
|
||||||
|
if (context != null) {
|
||||||
|
Intent serviceIntent = new Intent(context, SurveillanceService.class);
|
||||||
|
context.startForegroundService(serviceIntent);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -27,9 +27,7 @@ import androidx.core.app.NotificationManagerCompat;
|
||||||
import com.google.firebase.firestore.DocumentReference;
|
import com.google.firebase.firestore.DocumentReference;
|
||||||
import com.google.firebase.firestore.FirebaseFirestore;
|
import com.google.firebase.firestore.FirebaseFirestore;
|
||||||
|
|
||||||
import org.checkerframework.checker.index.qual.LengthOf;
|
public class SurveillanceService extends Service {
|
||||||
|
|
||||||
public class TestService extends Service {
|
|
||||||
|
|
||||||
private final Handler handler = new Handler();
|
private final Handler handler = new Handler();
|
||||||
private Runnable notificationRunnable;
|
private Runnable notificationRunnable;
|
||||||
|
@ -81,6 +79,7 @@ public class TestService extends Service {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int onStartCommand(Intent intent, int flags, int startId) {
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
||||||
|
Log.d(TAG, "onStartCommand: ");
|
||||||
this.userId = getSharedPreferences("app_situation", MODE_PRIVATE).getString("ID", null);
|
this.userId = getSharedPreferences("app_situation", MODE_PRIVATE).getString("ID", null);
|
||||||
if (this.userId == null) {
|
if (this.userId == null) {
|
||||||
Log.d("onResume", "ID not initialized.");
|
Log.d("onResume", "ID not initialized.");
|
||||||
|
@ -256,7 +255,7 @@ public class TestService extends Service {
|
||||||
private PendingIntent getPendingIntent(Context context) {
|
private PendingIntent getPendingIntent(Context context) {
|
||||||
Intent intent = new Intent(context, MainActivity.class);
|
Intent intent = new Intent(context, MainActivity.class);
|
||||||
intent.setAction("OPEN_ACTIVITY");
|
intent.setAction("OPEN_ACTIVITY");
|
||||||
return PendingIntent.getActivity(context, TestService.REQUEST_CODE, intent, PendingIntent.FLAG_IMMUTABLE);
|
return PendingIntent.getActivity(context, SurveillanceService.REQUEST_CODE, intent, PendingIntent.FLAG_IMMUTABLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
Loading…
Reference in New Issue
Block a user