Compare commits

..

No commits in common. "master" and "AlsoMaps" have entirely different histories.

47 changed files with 659 additions and 1115 deletions

View File

@ -18,9 +18,6 @@
android:theme="@style/Theme.Oplogy" android:theme="@style/Theme.Oplogy"
tools:ignore="ExtraText" tools:ignore="ExtraText"
tools:targetApi="31"> tools:targetApi="31">
<activity
android:name=".SettingView"
android:exported="false" />
<activity <activity
android:name=".SetUpActivity" android:name=".SetUpActivity"
android:exported="false" /> android:exported="false" />
@ -37,15 +34,21 @@
--> -->
<meta-data <meta-data
android:name="com.google.android.geo.API_KEY" android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyBQ1Ak-I2NL5TP4K59ZI0VgzKk6HNZuusw" /> android:value="AIzaSyBqLqPm76UFpwbpU8b3oiH0wbkhosrPWpU" />
<activity <activity
android:name=".Maps" android:name=".Maps"
android:exported="false" android:exported="false"
android:label="@string/title_activity_maps" /> android:label="@string/title_activity_maps" />
<activity
android:name=".TutorialActivity"
android:exported="false" />
<activity <activity
android:name=".SubmissionActivity" android:name=".SubmissionActivity"
android:exported="false" /> android:exported="false" />
<activity
android:name=".RootSearchActivity"
android:exported="false" />
<activity <activity
android:name=".CreateUUID" android:name=".CreateUUID"
android:exported="false" /> android:exported="false" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 367 KiB

View File

@ -16,11 +16,11 @@ public class Converters {
// タイムスタンプを文字列(yyyy-mm-dd,日時)に変換 // タイムスタンプを文字列(yyyy-mm-dd,日時)に変換
@TypeConverter @TypeConverter
public static List<String> fromTimestampList(List<Timestamp> timestamps) { public static List<String> fromTimestampList(List<Timestamp> timestamps) {
List<String> stringsList = new ArrayList<>(); List<String> strings = new ArrayList<>();
for (Timestamp timestamp : timestamps) { for (Timestamp timestamp : timestamps) {
stringsList.add(format.format(timestamp.toDate())); strings.add(format.format(timestamp.toDate()));
} }
return stringsList; return strings;
} }
@TypeConverter @TypeConverter

View File

@ -42,22 +42,21 @@ public class CreateSchedule {
private final AppDatabase db; private final AppDatabase db;
private int arraySizeInt; private int arraySizeInt;
private boolean notSecondDuplicatesBoolean;//スケジュールの重複の有無(第一希望日のみで通った場合も考えて初期はtrue) boolean notSecondDuplicatesBoolean = true;//スケジュールの重複の有無(第一希望日のみで通った場合も考えて初期はtrue)
String[] homeVisitDaysString; String[] date;
public CreateSchedule(AppCompatActivity activity) { public CreateSchedule(AppCompatActivity activity) {
this.db = Room.databaseBuilder(activity.getApplicationContext(), AppDatabase.class, "SetUpTable").build(); this.db = Room.databaseBuilder(activity.getApplicationContext(), AppDatabase.class, "SetUpTable").build();
this.notSecondDuplicatesBoolean = true; // 初期値をtrueに設定する
SharedPreferences sharedPreferences = activity.getSharedPreferences("visitingDate", Context.MODE_PRIVATE); SharedPreferences sharedPreferences = activity.getSharedPreferences("visitingDate", Context.MODE_PRIVATE);
String firstDay = sharedPreferences.getString("day1", null); String firstDay = sharedPreferences.getString("day1", null);
String secondDay = sharedPreferences.getString("day2", null); String secondDay = sharedPreferences.getString("day2", null);
String thirdDay = sharedPreferences.getString("day3", null); String thirdDay = sharedPreferences.getString("day3", null);
Log.d("createSchedule","day1"+firstDay+"day2"+secondDay+"thirdday"+thirdDay); date = new String[]{firstDay, secondDay, thirdDay};
homeVisitDaysString = new String[]{firstDay, secondDay, thirdDay};
} }
//MainActivityからデータを受け取る //MainActivityからデータを受け取る
@ -103,31 +102,26 @@ public class CreateSchedule {
boolean notDuplicatesBoolean = createSchedule(myDataList, intervalArrayInt); boolean notDuplicatesBoolean = createSchedule(myDataList, intervalArrayInt);
//スケジュールの重複の確認 //スケジュールの重複の確認
if (notDuplicatesBoolean) { if (!notDuplicatesBoolean) {
//スケジュールを基準にソートする
sortSchedule(myDataList);
}else{
//第二希望日で同じ処理を行う //第二希望日で同じ処理を行う
Log.d("CreateSchedule", "第二希望"); Log.d("CreateSchedule", "第二希望");
secondSetData(myDataList); secondSetData(myDataList);
secondTimeZoneSort(myDataList); secondTimeZoneSort(myDataList);
notSecondDuplicatesBoolean = secondCreateSchedule(myDataList, intervalArrayInt); notSecondDuplicatesBoolean = secondCreateSchedule(myDataList, intervalArrayInt);
//スケジュールを基準にソートする
sortSchedule(myDataList);
} }
}); });
// 重複がなければ開始地点の緯度経度を返す //重複がなければ開始地点の緯度経度を返す
if (notSecondDuplicatesBoolean) { if (notSecondDuplicatesBoolean) {
// 保護者の住所を緯度経度に変換する //スケジュールを基準にソートする
sortSchedule(myDataList);
String startPointLatLngString = geocodeAddress(myDataList, context); String startPointLatLngString = geocodeAddress(myDataList, context);
Log.d("CreateSchedule", "startPointLatLngString" + startPointLatLngString); Log.d("CreateSchedule", "startPointLatLngString" + startPointLatLngString);
outPutLogSchedule(myDataList); outPutLogSchedule(myDataList);
return startPointLatLngString; return startPointLatLngString;
} else {
// 重複があるときは""を返す
Log.d("CreateSchedule", "重複によるエラー");
return "";
} }
//重複があるときは""を返す
Log.d("CreateSchedule", "重複によるエラー");
return "";
} }
@ -319,8 +313,8 @@ public class CreateSchedule {
for (int x = 0; x < 3; x++) { for (int x = 0; x < 3; x++) {
//家庭訪問の日目が保護者の第一希望日かを判定する //家庭訪問の日目が保護者の第一希望日かを判定する
//まだスケジュールを割り当てていない保護者かを判定する //まだスケジュールを割り当てていない保護者かを判定する
if (homeVisitDaysString[x].equals(myDataList.get(i).getStartDateString()) && myDataList.get(i).getSchedule() == 0) { if (date[x].equals(myDataList.get(i).getStartDateString()) && myDataList.get(i).getSchedule() == 0) {
checkSchedule(myDataList, intervalArrayInt, i, j, x, myDataList.get(i).getStartDateString(),homeVisitDaysString); checkSchedule(myDataList, intervalArrayInt, i, j, x, myDataList.get(i).getStartDateString());
break; break;
} }
} }
@ -342,14 +336,13 @@ public class CreateSchedule {
for (int x = 0; x < 3; x++) { for (int x = 0; x < 3; x++) {
//家庭訪問の日目が保護者の第一希望日かを判定する //家庭訪問の日目が保護者の第一希望日かを判定する
//まだスケジュールを割り当てていない保護者かを判定する //まだスケジュールを割り当てていない保護者かを判定する
if (homeVisitDaysString[x].equals(myDataList.get(i).getSecondDayStartDateString()) && myDataList.get(i).getSchedule() == 0) { if (date[x].equals(myDataList.get(i).getSecondDayStartDateString()) && myDataList.get(i).getSchedule() == 0) {
checkSchedule(myDataList, intervalArrayInt, i, j, x, myDataList.get(i).getSecondDayStartDateString(),homeVisitDaysString); checkSchedule(myDataList, intervalArrayInt, i, j, x, myDataList.get(i).getSecondDayStartDateString());
} }
} }
} }
} }
for (int i = 0; i < myDataList.size(); i++) { for (int i = 0; i < myDataList.size(); i++) {
if (myDataList.get(i).getSchedule() == 0) {//重複により割り当てがされていない保護者がいないかの確認 if (myDataList.get(i).getSchedule() == 0) {//重複により割り当てがされていない保護者がいないかの確認
return false; return false;
@ -358,12 +351,10 @@ public class CreateSchedule {
return true; return true;
} }
private void checkSchedule(List<MyDataClass> myDataList, int[][][] intervalArrayInt, int i, int j, int x, String desiredDateString, String[] homeVisitDaysString) { private void checkSchedule(List<MyDataClass> myDataList, int[][][] intervalArrayInt, int i, int j, int x, String desiredDateString) {
//保護者の希望時間の開始と終了の間にまだ保護者の割り当てがされていないスケジュールの空き時間があるかの判定 //保護者の希望時間の開始と終了の間にまだ保護者の割り当てがされていないスケジュールの空き時間があるかの判定
if (intervalArrayInt[x][j][0] >= Integer.parseInt(myDataList.get(i).getParentStartTimeString()) && intervalArrayInt[x][j + 1][0] <= Integer.parseInt(myDataList.get(i).getParentEndTimeString()) && intervalArrayInt[x][j][1] == 0) { if (intervalArrayInt[x][j][0] >= Integer.parseInt(myDataList.get(i).getParentStartTimeString()) && intervalArrayInt[x][j + 1][0] <= Integer.parseInt(myDataList.get(i).getParentEndTimeString()) && intervalArrayInt[x][j][1] == 0) {
intervalArrayInt[x][j][1] += 1;//その時間が割り当て済みでありこと intervalArrayInt[x][j][1] += 1;//その時間が割り当て済みでありこと
myDataList.get(i).setScheduleDay(homeVisitDaysString[x]);
Log.d("CreateSchedule","getScheduleDay"+myDataList.get(i).getScheduleDay());
myDataList.get(i).setSchedule(Integer.parseInt(desiredDateString.substring(4, 8) + intervalArrayInt[x][j][0]));//スケジュールをmyDataListに入れる(:6041240(6月4日12時40分)) myDataList.get(i).setSchedule(Integer.parseInt(desiredDateString.substring(4, 8) + intervalArrayInt[x][j][0]));//スケジュールをmyDataListに入れる(:6041240(6月4日12時40分))
} }
} }

View File

@ -5,12 +5,12 @@ import java.util.List;
public class CreateUUID { public class CreateUUID {
public static int generateUUID(List<Integer> classIdList) { public static int generateUUID(List<Integer> classIdList ){
while (true) { while (true){
int uuidInt = (int) (Math.random() * 1000000); int uuid = (int)(Math.random() * 1000000);
boolean isDuplicate = false; boolean isDuplicate = false;
for (int classIdInt : classIdList) { for(int classId : classIdList){
if (classIdInt == uuidInt) { if(classId==uuid){
//重複があればフラグを立てループを抜ける //重複があればフラグを立てループを抜ける
isDuplicate = true; isDuplicate = true;
break; break;
@ -20,8 +20,10 @@ public class CreateUUID {
if (!isDuplicate) { if (!isDuplicate) {
//firestoreに挿入処理 //firestoreに挿入処理
InsertClassIdforFirebase insertClassIdforFirebase = new InsertClassIdforFirebase(); InsertClassIdforFirebase insertClassIdforFirebase = new InsertClassIdforFirebase();
insertClassIdforFirebase.insertClassId(uuidInt); insertClassIdforFirebase.insertClassId(uuid);
return uuidInt; //テスト用
uuid=100;
return uuid;
} }
} }
} }

View File

@ -7,8 +7,8 @@ import android.widget.DatePicker;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.fragment.app.DialogFragment; import androidx.fragment.app.DialogFragment;
import java.util.Calendar; import java.util.Calendar;
import java.util.Objects;
public class DatePick extends DialogFragment implements public class DatePick extends DialogFragment implements
DatePickerDialog.OnDateSetListener { DatePickerDialog.OnDateSetListener {
@ -19,16 +19,16 @@ public class DatePick extends DialogFragment implements
//デフォルトのタイムゾーンおよびロケールを使用してカレンダを取得 //デフォルトのタイムゾーンおよびロケールを使用してカレンダを取得
final Calendar c = Calendar.getInstance(); final Calendar c = Calendar.getInstance();
int yearInt = c.get(Calendar.YEAR); int year = c.get(Calendar.YEAR);
int monthInt = c.get(Calendar.MONTH); int month = c.get(Calendar.MONTH);
int dayInt = c.get(Calendar.DAY_OF_MONTH); int day = c.get(Calendar.DAY_OF_MONTH);
return new DatePickerDialog(requireActivity(), (DatePickerDialog.OnDateSetListener) getActivity(), yearInt, monthInt, dayInt); return new DatePickerDialog(requireActivity(), (DatePickerDialog.OnDateSetListener) getActivity(), year, month, day);
} }
@Override @Override
public void onDateSet(DatePicker datePicker, int yearInt, int monthInt, int dayInt) { public void onDateSet(DatePicker datePicker, int year, int month, int day) {
} }
} }

View File

@ -16,20 +16,21 @@ import java.util.Map;
public class FirestoreReception { public class FirestoreReception {
//firestoreから受け取ったデータを束ねるためのマップ
public List<MyDataClass> myDataList = new ArrayList<>();
private FirebaseFirestore db; private FirebaseFirestore db;
public FirestoreReception() { public FirestoreReception() {
db = FirebaseFirestore.getInstance(); db = FirebaseFirestore.getInstance();
} }
//firestoreから受け取ったデータを束ねるためのマップ
public List<MyDataClass> myDataList = new ArrayList<>();
//ClassIdを引数にデータの作成を行う //ClassIdを引数にデータの作成を行う
public void getDocumentsByClassId(int classId) { public void getDocumentsByClassId(int classId) {
myDataList.clear(); myDataList.clear();
CollectionReference collectionRef = db.collection("QuestionForm"); CollectionReference collectionRef = db.collection("QuestionnaireForms");
// classIdが引数のものを取得する
collectionRef.whereEqualTo("classId", classId).get() collectionRef.whereEqualTo("classId", classId).get()
.addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() { .addOnCompleteListener(new OnCompleteListener<QuerySnapshot>() {
@Override @Override

View File

@ -4,6 +4,8 @@ import android.util.Log;
import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task; import com.google.android.gms.tasks.Task;
import com.google.firebase.firestore.CollectionReference;
import com.google.firebase.firestore.DocumentSnapshot;
import com.google.firebase.firestore.FirebaseFirestore; import com.google.firebase.firestore.FirebaseFirestore;
import com.google.firebase.firestore.QueryDocumentSnapshot; import com.google.firebase.firestore.QueryDocumentSnapshot;
import com.google.firebase.firestore.QuerySnapshot; import com.google.firebase.firestore.QuerySnapshot;
@ -12,6 +14,7 @@ import org.checkerframework.checker.nullness.qual.NonNull;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Map;
public class FirestoreReception_classIdDatabase { public class FirestoreReception_classIdDatabase {
private FirebaseFirestore db; private FirebaseFirestore db;
private List<Integer> classIdList= new ArrayList<>(); private List<Integer> classIdList= new ArrayList<>();

View File

@ -0,0 +1,59 @@
package com.example.oplogy;
import android.content.Context;
import android.location.Address;
import android.location.Geocoder;
import android.util.Log;
import com.google.android.gms.maps.model.LatLng;
import com.google.firebase.Timestamp;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
import java.util.Map;
public class GeoCoder {
private Context context;
public void processData(Map<String, Object> data, Context context) {
try {
this.context = context;
//家庭訪問先の住所
List<String> address = (List<String>) data.get("address");
//家庭訪問の第一希望日(配列0が希望時間帯のはじめ配列1がおわり)
List<Timestamp> firstDay = (List<Timestamp>) data.get("firstDay");
//出席番号
Long studentNumber = (Long) data.get("studentNumber");
// 住所を緯度経度に変換
LatLng latLng = geocodeAddress(address.get(0));
//デバッグ用ログ
Log.d("FirestoreReception", "address: " + address.get(0));
Log.d("FirestoreReception", "firstDay: " + firstDay.get(0));
Log.d("FirestoreReception", "firstDay: " + firstDay.get(1));
Log.d("FirestoreReception", "studentNumber: " + studentNumber);
Log.d("FirestoreReception", "latLng: " + latLng);
} catch (NullPointerException e) {
Log.e("NullPointerException", "getの中身がnull" + e);
}
}
private LatLng geocodeAddress(String address) {
try {
Geocoder geocoder = new Geocoder(context, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocationName(address, 1);
if (addresses != null && !addresses.isEmpty()) {
Address addressResult = addresses.get(0);
double latitude = addressResult.getLatitude();
double longitude = addressResult.getLongitude();
return new LatLng(latitude, longitude);
}
} catch (IOException e) {
Log.e("GeocodingException", "Error geocoding address: " + address, e);
}
return null;
}
}

View File

@ -1,8 +1,7 @@
package com.example.oplogy; package com.example.oplogy;
import android.app.ProgressDialog; import android.content.DialogInterface;
import android.content.Intent; import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle; import android.os.Bundle;
import android.util.Log; import android.util.Log;
import android.view.View; import android.view.View;
@ -15,43 +14,61 @@ import androidx.appcompat.app.AppCompatActivity;
import androidx.room.Room; import androidx.room.Room;
import com.google.firebase.firestore.FirebaseFirestore; import com.google.firebase.firestore.FirebaseFirestore;
import com.google.gson.Gson;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CountDownLatch; import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors; import java.util.concurrent.Executors;
public class MainActivity extends AppCompatActivity implements View.OnClickListener { public class MainActivity extends AppCompatActivity implements View.OnClickListener {
// ダイアログの宣言 // ダイアログの宣言
private AlertDialog alertDialog; private AlertDialog alertDialog;
// ID作成のTextViewとImageView // ID作成のTextViewとImageView
private TextView creatUUID;
private ImageView imageUuid;
// セットアップのTextViewとImageView
private TextView setUp;
private ImageView imageSetup;
// セットアップのTextViewとImageView
private TextView root; private TextView root;
private ImageView imageRoot; private ImageView imageRoot;
// 提出状況のTextViewとImageView // 提出状況のTextViewとImageView
private TextView submission; private TextView submission;
private ImageView imageSubmission; private ImageView imageSubmission;
private TextView SettingView;
private ImageView imageSettingView;
//firestoreの受信関連 //firestoreの受信関連
private FirebaseFirestore db; private FirebaseFirestore db;
private FirestoreReception firestoreReception; private FirestoreReception firestoreReception;
private FirestoreReception_classIdDatabase firestoreReception_classIdDatabase;
//取得するためのクラスID //取得するためのクラスID
private int classId; private int classId;
private String address;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.main); setContentView(R.layout.main);
// ID作成用のインテント
creatUUID = findViewById(R.id.creatUUID);
creatUUID.setOnClickListener(this);
imageUuid = findViewById(R.id.imageUuid);
imageUuid.setOnClickListener(this);
// セットアップ用のインテント
setUp = findViewById(R.id.setUp);
setUp.setOnClickListener(this);
imageSetup = findViewById(R.id.imageSetup);
imageSetup.setOnClickListener(this);
// ルート作成用のインテント // ルート作成用のインテント
root = findViewById(R.id.root); root = findViewById(R.id.root);
root.setOnClickListener(this); root.setOnClickListener(this);
@ -64,16 +81,10 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
imageSubmission = findViewById(R.id.imageSubmission); imageSubmission = findViewById(R.id.imageSubmission);
imageSubmission.setOnClickListener(this); imageSubmission.setOnClickListener(this);
// 設定用のインテント
SettingView = findViewById(R.id.setting);
SettingView.setOnClickListener(this);
imageSettingView = findViewById(R.id.imageSetting);
imageSettingView.setOnClickListener(this);
// firestoreの受信関連 // firestoreの受信関連
db = FirebaseFirestore.getInstance(); db = FirebaseFirestore.getInstance();
firestoreReception = new FirestoreReception(); firestoreReception = new FirestoreReception();
Log.d("MainActivity", "geocodeAddress"); Log.d("MainActivity","geocodeAddress");
ExecutorService executor = Executors.newSingleThreadExecutor(); ExecutorService executor = Executors.newSingleThreadExecutor();
@ -93,108 +104,102 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
} }
// クリック処理 // クリック処理
@Override @Override
public void onClick(View view) { public void onClick(View view) {
// ID作成のクリック処理
if (view == creatUUID) {
imageUuid.setImageResource(R.drawable.ischecked_uuid);
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
}
if (view == imageUuid) {
imageUuid.setImageResource(R.drawable.ischecked_uuid);
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
}
// セットアップのクリック処理
if (view == setUp) {
imageSetup.setImageResource(R.drawable.ischecked_uuid);
Intent toSetup = new Intent(MainActivity.this, SetUpActivity.class);
toSetup.putExtra("classId", classId);
startActivity(toSetup);
finish(); // 画面遷移後元の状態に戻す
}
if (view == imageSetup) {
imageSetup.setImageResource(R.drawable.ischecked_uuid);
Intent toSetup = new Intent(MainActivity.this, SetUpActivity.class);
startActivity(toSetup);
finish(); // 画面遷移後元の状態に戻す
}
// ルート作成のクリック処理 // ルート作成のクリック処理
if (view == root) { if (view == root) {
imageRoot.setImageResource(R.drawable.pin); imageRoot.setImageResource(R.drawable.pin);
checkSetupAndCreateRoute(this::fetchDataAndCreateRoute); fetchDataAndCreateRoute();
} }
if (view == imageRoot) { if (view == imageRoot) {
imageRoot.setImageResource(R.drawable.pin); imageRoot.setImageResource(R.drawable.pin);
checkSetupAndCreateRoute(this::fetchDataAndCreateRoute); fetchDataAndCreateRoute();
} }
// 提出状況のクリック処理 // 提出状況のクリック処理
if (view == submission) { if (view == submission) {
checkSetupAndCreateRoute(() -> { ArrayList<SubmissionStudent> submissionStudents = getSubmissionStudents();
ArrayList<SubmissionStudent> submissionStudents = getSubmissionStudents(); Intent toSubmission = new Intent(MainActivity.this, SubmissionActivity.class);
Intent toSubmission = new Intent(MainActivity.this, SubmissionActivity.class); toSubmission.putParcelableArrayListExtra("submissionStudents", submissionStudents);
toSubmission.putParcelableArrayListExtra("submissionStudents", submissionStudents); startActivity(toSubmission);
startActivity(toSubmission);
});
} }
if (view == imageSubmission) { if (view == imageSubmission) {
checkSetupAndCreateRoute(() -> { ArrayList<SubmissionStudent> submissionStudents = getSubmissionStudents();
ArrayList<SubmissionStudent> submissionStudents = getSubmissionStudents(); Intent toSubmission = new Intent(MainActivity.this, SubmissionActivity.class);
Intent toSubmission = new Intent(MainActivity.this, SubmissionActivity.class); toSubmission.putParcelableArrayListExtra("submissionStudents", submissionStudents);
toSubmission.putParcelableArrayListExtra("submissionStudents", submissionStudents); startActivity(toSubmission);
startActivity(toSubmission);
});
}
if (view == SettingView) {
Intent toSettingView = new Intent(MainActivity.this, SettingView.class);
startActivity(toSettingView);
}
if (view == imageSettingView) {
Intent toSettingView = new Intent(MainActivity.this, SettingView.class);
startActivity(toSettingView);
} }
} }
//UUIDを表示するかのダイアログ
private void showUUIDYesNoDialog() {
firestoreReception_classIdDatabase = new FirestoreReception_classIdDatabase();
List<Integer> classIdList = firestoreReception_classIdDatabase.getAllDocumentsFromClassIdDatabase();
//ルート作成提出状況の遷移を行う前のチェックを行う処理
private void checkSetupAndCreateRoute(Runnable onSetupComplete) {
if (isClassIdSet()) {
isSetupExists(classId).thenAccept(setupExists -> {
if (setupExists) {
runOnUiThread(onSetupComplete);
} else {
runOnUiThread(() -> {
Toast.makeText(this, "先に設定画面で情報を入力してください", Toast.LENGTH_SHORT).show();
});
}
}).exceptionally(ex -> {
ex.printStackTrace();
runOnUiThread(() -> {
Toast.makeText(this, "エラーが発生しました", Toast.LENGTH_LONG).show();
});
return null;
});
} else {
Toast.makeText(this, "先に設定画面で情報を入力してください", Toast.LENGTH_SHORT).show();
}
}
// クラスIDが設定されているかどうかを判定 AlertDialog.Builder builder = new AlertDialog.Builder(this);
private boolean isClassIdSet() { builder.setTitle("クラスID");
// classIdが0より大きい場合trueを返す builder.setMessage("あなたのクラスIDを表示しますか");
return classId > 0;
}
// セットアップが存在するかどうかを判定 builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
private CompletableFuture<Boolean> isSetupExists(int classId) { @Override
final ExecutorService executorService = Executors.newSingleThreadExecutor(); public void onClick(DialogInterface dialog, int which) {
return CompletableFuture.supplyAsync(() -> { classId = CreateUUID.generateUUID(classIdList);
AppDatabase db = getDatabaseInstance(); Toast.makeText(MainActivity.this, "クラスID: " + classId, Toast.LENGTH_SHORT).show();
SetUpTableDao setUpTableDao = db.setUpTableDao(); imageUuid.setImageResource(R.drawable.checked_image);
//データベースの値を全取得
List<SetUpTable> checkData = setUpTableDao.getAll();
for (SetUpTable setUpTable : checkData) {
//SetUpTableのclassIdと引数のclassIdが一致する場合trueを返す
if (setUpTable.classId == classId) {
return true;
}
} }
return false; });
//処理完了時にexecutorServiceをシャットダウン builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
}, executorService).whenComplete((result, throwable) -> executorService.shutdown()); @Override
} public void onClick(DialogInterface dialog, int which) {
Log.d("DialogNO", "DialogでNoが選ばれました");
imageUuid.setImageResource(R.drawable.checked_image);
}
});
alertDialog = builder.create();
alertDialog.show();
}
//ルート作成の非同期処理 //ルート作成の非同期処理
private void fetchDataAndCreateRoute() { private void fetchDataAndCreateRoute() {
ExecutorService executor = Executors.newSingleThreadExecutor(); ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(() -> { executor.execute(() -> {
AppDatabase db = getDatabaseInstance(); AppDatabase db = getDatabaseInstance(); SetUpTableDao setUpTableDao = db.setUpTableDao();
SetUpTableDao setUpTableDao = db.setUpTableDao(); int totalStudent = setUpTableDao.getTotalStudent();
int totalStudentInt = setUpTableDao.getTotalStudent(); int myDataListSize = firestoreReception.getMyDataListSize();
int myDataListSizeInt = firestoreReception.getMyDataListSize();
//総生徒数と提出済みになっている生徒の数が一致するかの確認 //総生徒数と提出済みになっている生徒の数が一致するかの確認
runOnUiThread(() -> { runOnUiThread(() -> {
if (totalStudentInt != myDataListSizeInt) { if (totalStudent != myDataListSize) {
//未提出者がいることの警告ダイアログ //未提出者がいることの警告ダイアログ
showRouteCreationDialog(); showRouteCreationDialog();
} else { } else {
@ -207,7 +212,6 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
// `fetchDataAndCreateRoute`メソッド内ではshutdownを呼び出さない // `fetchDataAndCreateRoute`メソッド内ではshutdownを呼び出さない
} }
// 未提出者がいることの警告ダイアログ
private void showRouteCreationDialog() { private void showRouteCreationDialog() {
new AlertDialog.Builder(MainActivity.this) new AlertDialog.Builder(MainActivity.this)
.setTitle("警告") .setTitle("警告")
@ -224,15 +228,7 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
.show(); .show();
} }
// ルート作成の非同期処理
private void createRoute(ExecutorService executor) { private void createRoute(ExecutorService executor) {
// ProgressDialogを作成
ProgressDialog progressDialog = new ProgressDialog(MainActivity.this);
progressDialog.setMessage("Loading...");
progressDialog.setCancelable(false);
progressDialog.show();
executor.execute(() -> { executor.execute(() -> {
List<MyDataClass> myDataList = null; List<MyDataClass> myDataList = null;
while (myDataList == null) { while (myDataList == null) {
@ -241,37 +237,22 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
Thread.sleep(3000); Thread.sleep(3000);
} catch (InterruptedException e) { } catch (InterruptedException e) {
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
runOnUiThread(progressDialog::dismiss); // 進行状況ダイアログを閉じる
return; return;
} }
} }
//final宣言することによってスレッドセーフになる(ラムダ式内で使えるようにする) //final宣言することによってスレッドセーフになる(ラムダ式内で使えるようにする)
final List<MyDataClass> finalMyDataList = myDataList; final List<MyDataClass> finalMyDataList = myDataList;
CreateSchedule createSchedule = new CreateSchedule(MainActivity.this); CreateRoot createRoot = new CreateRoot(MainActivity.this);
String startPointLatLngString = createSchedule.receiveData(myDataList, getApplicationContext()); Boolean notDuplicates = createRoot.receiveData(finalMyDataList, getApplicationContext());
Boolean notDuplicatesBoolean = null;
for (int i = 0; i < myDataList.size(); i++) {
if (myDataList.get(i).getSchedule() == 0) {
notDuplicatesBoolean = false;
break;
} else {
notDuplicatesBoolean = true;
}
}
Boolean finalNotDuplicatesBoolean = notDuplicatesBoolean;
Log.d("MainActivity", "重複判定" + String.valueOf(finalNotDuplicatesBoolean));
runOnUiThread(() -> { runOnUiThread(() -> {
progressDialog.dismiss(); // 進行状況ダイアログを閉じる if (notDuplicates) {
if (finalNotDuplicatesBoolean) {
Log.d("MainActivity", "スケジュール作成成功"); Log.d("MainActivity", "スケジュール作成成功");
saveMyDataList(finalMyDataList);
Intent toRoot = new Intent(MainActivity.this, Maps.class); Intent toRoot = new Intent(MainActivity.this, Maps.class);
toRoot.putExtra("startPointLatLngString", startPointLatLngString);
startActivity(toRoot); startActivity(toRoot);
} else { } else {
// 保護者の重複による警告ダイアログ //保護者の重複による警告ダイアログ
showErrorDialog(finalMyDataList); showErrorDialog(finalMyDataList);
} }
}); });
@ -281,22 +262,6 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
}); });
} }
// 作成したルートを(Mapに渡せるように)保存するメソッド
private void saveMyDataList(List<MyDataClass> myDataList) {
// 共有プリファレンスのインスタンスを取得
SharedPreferences sharedPreferences = getSharedPreferences("MyDataList", MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
// MyDataListをJSON形式に変換
Gson gson = new Gson();
String jsonString = gson.toJson(myDataList);
// JSON形式のデータを共有プリファレンスに保存
editor.putString("myDataList", jsonString);
editor.apply();
}
// 保護者の重複による警告ダイアログ
private void showErrorDialog(List<MyDataClass> myDataList) { private void showErrorDialog(List<MyDataClass> myDataList) {
List<Integer> studentNumbers = new ArrayList<>(); List<Integer> studentNumbers = new ArrayList<>();
for (MyDataClass data : myDataList) { for (MyDataClass data : myDataList) {
@ -304,22 +269,12 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
studentNumbers.add(data.getStudentNumber()); studentNumbers.add(data.getStudentNumber());
} }
} }
StringBuilder message = new StringBuilder("保護者の重複が重大でルート作成ができません。保護者に連絡して調整してください。\n\n"); StringBuilder message = new StringBuilder("保護者の重複が重大でルート作成ができません。調整してください。\n出席番号: ");
for (int i = 0; i < studentNumbers.size(); i++) { for (int i = 0; i < studentNumbers.size(); i++) {
message.append("出席番号:" + studentNumbers.get(i)); message.append(studentNumbers.get(i));
message.append("\n保護者名:" + myDataList.get(i).getPatronName()); if (i < studentNumbers.size() - 1) {
message.append("\n第一希望 " + myDataList.get(i).getStartDateString().substring(4, 6) + ""); message.append(", ");
message.append(myDataList.get(i).getStartDateString().substring(6, 8) + ""); }
message.append(" " + myDataList.get(i).getParentStartTimeString().substring(0, 2));
message.append(":" + myDataList.get(i).getParentStartTimeString().substring(2, 4));
message.append("" + myDataList.get(i).getParentEndTimeString().substring(0, 2));
message.append(":" + myDataList.get(i).getParentEndTimeString().substring(2, 4));
message.append("\n第二希望 " + myDataList.get(i).getSecondDayStartDateString().substring(4, 6) + "");
message.append(myDataList.get(i).getSecondDayStartDateString().substring(6, 8) + "");
message.append(" " + myDataList.get(i).getSecondDayParentStartTimeString().substring(0, 2));
message.append(":" + myDataList.get(i).getSecondDayParentStartTimeString().substring(2, 4));
message.append("" + myDataList.get(i).getSecondDayParentEndTimeString().substring(0, 2));
message.append(":" + myDataList.get(i).getSecondDayParentEndTimeString().substring(2, 4) + "\n\n");
} }
new AlertDialog.Builder(MainActivity.this) new AlertDialog.Builder(MainActivity.this)
.setTitle("警告") .setTitle("警告")
@ -330,14 +285,15 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
.show(); .show();
} }
// データベースのインスタンスを取得するメソッド
private AppDatabase getDatabaseInstance() { private AppDatabase getDatabaseInstance() {
return Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "SetUpTable").build(); return Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "SetUpTable").build();
} }
//提出状況の取得 //提出状況の取得
public ArrayList<SubmissionStudent> getSubmissionStudents() { private ArrayList<SubmissionStudent> getSubmissionStudents() {
ArrayList<SubmissionStudent> submissionStudents = new ArrayList<>(); ArrayList<SubmissionStudent> submissionStudents = new ArrayList<>();
List<MyDataClass> myDataList = firestoreReception.getMyDataList(); List<MyDataClass> myDataList = firestoreReception.getMyDataList();
@ -345,44 +301,40 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
CountDownLatch latch = new CountDownLatch(1); CountDownLatch latch = new CountDownLatch(1);
executor.execute(() -> { executor.execute(() -> {
try { // 1. Roomデータベースから全生徒数を取得
// 1. Roomデータベースから全生徒数を取得 AppDatabase db = getDatabaseInstance();
AppDatabase db = getDatabaseInstance(); SetUpTableDao setUpTableDao = db.setUpTableDao();
SetUpTableDao setUpTableDao = db.setUpTableDao(); int totalStudent = setUpTableDao.getTotalStudent();
int totalStudentInt = setUpTableDao.getTotalStudent(); // 2. Firestoreから生徒番号のリストを取得
ArrayList<Integer> firestoreStudentNumbers = new ArrayList<>();
// 2. Firestoreから生徒番号のリストを取得 for (MyDataClass myData : myDataList) {
ArrayList<Integer> firestoreStudentNumbersList = new ArrayList<>(); int studentNumber = myData.getStudentNumber();
for (MyDataClass myData : myDataList) { firestoreStudentNumbers.add(studentNumber);
int studentNumberInt = myData.getStudentNumber();
firestoreStudentNumbersList.add(studentNumberInt);
}
// 3. SubmissionStudentオブジェクトのリストを作成
for (int i = 1; i <= totalStudentInt; i++) {
boolean submitted = firestoreStudentNumbersList.contains(i);
submissionStudents.add(new SubmissionStudent(i, submitted));
}
} catch (Exception e) {
e.printStackTrace(); // ログにエラーメッセージを出力
} finally {
// 4. データベース操作が完了したことを通知
latch.countDown();
} }
// 3. SubmissionStudentオブジェクトのリストを作成
for (int i = 1; i <= totalStudent; i++) {
boolean submitted = firestoreStudentNumbers.contains(i);
submissionStudents.add(new SubmissionStudent(i, submitted));
}
// 4. データベース操作が完了したことを通知
latch.countDown();
}); });
try { try {
latch.await(); // 非同期処理が完了するまで待機 // データベース操作が完了するのを待つ
latch.await();
} catch (InterruptedException e) { } catch (InterruptedException e) {
e.printStackTrace(); e.printStackTrace();
} finally {
executor.shutdown(); // ExecutorServiceをシャットダウン
} }
executor.shutdown();
// SubmissionStudentオブジェクトのリストを返す
return submissionStudents; return submissionStudents;
} }
@Override @Override
protected void onDestroy() { protected void onDestroy() {
super.onDestroy(); super.onDestroy();

View File

@ -1,9 +1,7 @@
package com.example.oplogy; package com.example.oplogy;
import android.content.SharedPreferences; import androidx.fragment.app.FragmentActivity;
import android.graphics.Color; import android.graphics.Color;
import android.graphics.drawable.ShapeDrawable;
import android.graphics.drawable.shapes.OvalShape;
import android.os.Bundle; import android.os.Bundle;
import android.util.Log; import android.util.Log;
import android.view.View; import android.view.View;
@ -14,9 +12,6 @@ import android.widget.LinearLayout;
import android.widget.Spinner; import android.widget.Spinner;
import android.widget.TextView; import android.widget.TextView;
import androidx.fragment.app.FragmentActivity;
import com.example.oplogy.databinding.MapsBinding;
import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback; import com.google.android.gms.maps.OnMapReadyCallback;
@ -25,8 +20,8 @@ import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker; import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions; import com.google.android.gms.maps.model.MarkerOptions;
import com.example.oplogy.databinding.MapsBinding;
import com.google.android.gms.maps.model.PolylineOptions; import com.google.android.gms.maps.model.PolylineOptions;
import com.google.common.reflect.TypeToken;
import com.google.gson.Gson; import com.google.gson.Gson;
import com.google.gson.JsonArray; import com.google.gson.JsonArray;
import com.google.gson.JsonObject; import com.google.gson.JsonObject;
@ -34,7 +29,6 @@ import com.google.gson.JsonPrimitive;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.lang.reflect.Type;
import java.net.HttpURLConnection; import java.net.HttpURLConnection;
import java.net.URL; import java.net.URL;
import java.util.ArrayList; import java.util.ArrayList;
@ -44,70 +38,63 @@ import java.util.Map;
public class Maps extends FragmentActivity implements OnMapReadyCallback, View.OnClickListener, GoogleMap.OnMarkerClickListener { public class Maps extends FragmentActivity implements OnMapReadyCallback, View.OnClickListener, GoogleMap.OnMarkerClickListener {
//GoogleMapAPiで使用可能な色
private static final int[] COLORS = new int[]{Color.parseColor("#007FFF"), // HUE_AZURE
Color.parseColor("#0000FF"), // HUE_BLUE
Color.parseColor("#00FFFF"), // HUE_CYAN
Color.parseColor("#00FF00"), // HUE_GREEN
Color.parseColor("#FF00FF"), // HUE_MAGENTA
Color.parseColor("#FFA500"), // HUE_ORANGE
Color.parseColor("#FF0000"), // HUE_RED
Color.parseColor("#FF007F"), // HUE_ROSE
Color.parseColor("#8A2BE2"), // HUE_VIOLET
Color.parseColor("#FFFF00") // HUE_YELLOW
};
private final List<LatLng> latLngList = new ArrayList<>();
private final List<String> nameList = new ArrayList<>();
private final List<Integer> colorList = new ArrayList<>();
private final Map<String, Runnable> dateMap = new HashMap<>();
ImageView backMain; ImageView backMain;
private GoogleMap mMap; private GoogleMap mMap;
private MapsBinding binding;
private LinearLayout locationsName; private LinearLayout locationsName;
private Spinner dateSpinner;
private static final int[] COLORS = new int[]{
Color.BLUE, Color.RED, Color.GREEN, Color.MAGENTA, Color.CYAN, Color.YELLOW
};
private int colorIndex = 0; private int colorIndex = 0;
private List<LatLng> latLngList = new ArrayList<>();
private List<String> nameList = new ArrayList<>();
private List<Integer> colorList = new ArrayList<>();
private Map<String, Runnable> dateMap = new HashMap<>();
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
// バインディングの設定
com.example.oplogy.databinding.MapsBinding binding = MapsBinding.inflate(getLayoutInflater()); binding = MapsBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot()); setContentView(binding.getRoot());
// マップフラグメントの設定 SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map); .findFragmentById(R.id.map);
mapFragment.getMapAsync(this); mapFragment.getMapAsync(this);
// 各UI要素の設定
backMain = findViewById(R.id.BackMain); backMain = findViewById(R.id.BackMain);
backMain.setOnClickListener(this); backMain.setOnClickListener(this);
locationsName = findViewById(R.id.locationsName); locationsName = findViewById(R.id.locationsName);
// スピナーの設定 // 日付を入れる処理
String dateDataString = formatDate(getSharedPreferencesData(0)) + "/" + formatDate(getSharedPreferencesData(1)) + "/" + formatDate(getSharedPreferencesData(2)); String dateData = "6月3日/6月4日/6月5日/6月6日/6月7日";
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item); ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
String[] dates = dateDataString.split("/"); String[] dates = dateData.split("/");
for (String date : dates) { for (String date : dates) {
adapter.add(date); adapter.add(date);
} }
// 各日付に対応するRunnableを設定する // 各日付に対応するRunnableを設定する
for (int i = 0; i < 3; i++) { dateMap.put("6月3日", this::firstMapAndNames);
int finalI = i; dateMap.put("6月4日", this::secondMapAndNames);
String dayString = getSharedPreferencesData(i); dateMap.put("6月5日", this::thirdMapAndNames);
String formattedDayString = formatDate(dayString); // 必要に応じて追加の日付に対応するメソッドをここに追加
dateMap.put(formattedDayString, () -> loadMapAndNames(createlocationData(finalI), getscrollViewlData(finalI))); dateMap.put("6月6日", this::additionalMapAndNames);
} dateMap.put("6月7日", this::additionalMapAndNames2);
Spinner dateSpinner = findViewById(R.id.date); dateSpinner = findViewById(R.id.date);
dateSpinner.setAdapter(adapter); dateSpinner.setAdapter(adapter);
// スピナーのアイテム選択リスナーを設定
dateSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { dateSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override @Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
String selectedItemString = (String) parent.getItemAtPosition(position); String selectedItem = (String) parent.getItemAtPosition(position);
Runnable mapLoader = dateMap.get(selectedItemString); Runnable mapLoader = dateMap.get(selectedItem);
if (mapLoader != null) { if (mapLoader != null) {
mapLoader.run(); mapLoader.run();
} }
@ -120,186 +107,83 @@ public class Maps extends FragmentActivity implements OnMapReadyCallback, View.O
}); });
} }
//ルート表示を押して最初に表示されるルート(3日間の家庭訪問における1日目)の設定
@Override @Override
public void onMapReady(GoogleMap googleMap) { public void onMapReady(GoogleMap googleMap) {
//Google mapの定義
mMap = googleMap; mMap = googleMap;
mMap.setOnMarkerClickListener(this); mMap.setOnMarkerClickListener(this);
//家庭訪問1日目のスケジュール順に緯度経度の情報をString型の変数に格納 firstMapAndNames(); // 最初に表示するデータセットをロード
//35.1711355,136.88552149999998/35.1696089,136.884084/35.1732838,136.88832890000003/...
String locationDataString = createlocationData(0);
//家庭訪問1日目のスケジュール順に住所や出席番号家庭訪問の開始時間の情報をString型の変数に格納
//開始地点/出席番号2番:鈴木次郎<453-0015 愛知県名古屋市中村区椿町6 地下1階5階> 06月04日12時00分/...
String scrollViewlDataString = getscrollViewlData(0);
loadMapAndNames(locationDataString, scrollViewlDataString);
} }
//家庭訪問の日目が何月何日かを返すメソッド private void firstMapAndNames() {
private String getSharedPreferencesData(int i) { String locationData = "35.09050879999539,136.87845379325216/35.091950716938875,136.8826598363985/35.09273643623442,136.88154941341296/35.09473643623442,136.88154941341296/35.09673643623442,136.88154941341296";
SharedPreferences sharedPreferences = getSharedPreferences("visitingDate", MODE_PRIVATE); String nameData = "名古屋港水族館/2番目/3番目/4番目/5番目";
// SetUpで設定した8桁の数字表記の家庭訪問日を日付表記に変更 loadMapAndNames(locationData, nameData);
String dayString;
if (i == 0) {
dayString = sharedPreferences.getString("day1", null);
} else if (i == 1) {
dayString = sharedPreferences.getString("day2", null);
} else {
dayString = sharedPreferences.getString("day3", null);
}
return dayString;
} }
//家庭訪問の日付を8桁の整数表記から(2024070707月07日)表記に変更する private void secondMapAndNames() {
private String formatDate(String date) { String locationData2 = "35.09050879999539,136.87845379325216/35.091950716938875,136.8826598363985/35.09273643623442,136.88154941341296";
if (date == null || date.length() != 8) { String nameData2 = "名古屋港水族館/2番目/3番目";
return ""; loadMapAndNames(locationData2, nameData2);
}
String monthString = date.substring(4, 6);
String dayString = date.substring(6, 8);
return monthString + "" + dayString + "";
} }
//家庭訪問1日目のスケジュール順に緯度経度の情報をString型の変数に格納 private void thirdMapAndNames() {
private String createlocationData(int i) { String locationData3 = "35.09050879999539,136.87845379325216/35.091950716938875,136.8826598363985";
//家庭訪問の開始地点の緯度経度 String nameData3 = "名古屋港水族館/2番目";
String startPointLatLngString = getIntent().getStringExtra("startPointLatLngString"); loadMapAndNames(locationData3, nameData3);
List<MyDataClass> myDataList = getMyDataList();
//家庭訪問の緯度経度情報をまとめる変数
StringBuilder latlngString = new StringBuilder();
for (int y = -1; y < myDataList.size(); y++) {
if (y < 0) {
//家庭訪問の開始地点を追加
latlngString.append(startPointLatLngString);
} else if (myDataList.get(y).getScheduleDay().equals(getSharedPreferencesData(i))) {
if (latlngString.length() > 0) {
//区切りのスラッシュ
latlngString.append("/");
}
//mydataListから取り出した家庭訪問の各家庭の住所の緯度経度を追加
//この時点ではlongitude latitudeのような不要な文字があるのでformatLatLngメソッドで緯度経度だけのデータにする
latlngString.append(formatLatLng(myDataList.get(y)));
}
}
//各家庭の緯度経度をまとめたものを返す
return latlngString.toString();
} }
//緯度と経度は(35.1711355,136.88552149999998)のように()の中に入っているのでそこだけを取り出す // 追加の日付に対応するメソッド
private String formatLatLng(MyDataClass myData) { private void additionalMapAndNames() {
String latlngString = myData.getLatLngString(); String locationData4 = "35.09050879999539,136.87845379325216/35.091950716938875,136.8826598363985/35.09300000000000,136.88300000000000";
int startIndex = latlngString.indexOf("(") + 1; String nameData4 = "名古屋港水族館/2番目/3番目";
int endIndex = latlngString.indexOf(")"); loadMapAndNames(locationData4, nameData4);
return latlngString.substring(startIndex, endIndex);
} }
//ScrollViewにて表示するdataの作成メソッド private void additionalMapAndNames2() {
private String getscrollViewlData(int i) { String locationData5 = "35.09050879999539,136.87845379325216/35.091950716938875,136.8826598363985/35.09400000000000,136.88400000000000";
List<MyDataClass> myDataList = getMyDataList(); String nameData5 = "名古屋港水族館/2番目/3番目";
String homeVisitDataString = ""; loadMapAndNames(locationData5, nameData5);
for (int y = -1; y < myDataList.size(); y++) {
if (y < 0) {
//家庭訪問の開始地点
homeVisitDataString += "開始地点/";
} else if (myDataList.get(y).getScheduleDay().equals(getSharedPreferencesData(i)) && y + 1 < myDataList.size()) {
//出席番号:生徒の名前 <住所> 家庭訪問の開始時間+/
homeVisitDataString += "出席番号" + String.valueOf(myDataList.get(y).getStudentNumber()) + "番:" + myDataList.get(y).getChildName() + "<" + myDataList.get(y).getAddress().get(0) + "> " + formatSchedule(String.valueOf(myDataList.get(y).getSchedule())) + "/";
} else if (myDataList.get(y).getScheduleDay().equals(getSharedPreferencesData(i))) {
homeVisitDataString += "出席番号" + String.valueOf(myDataList.get(y).getStudentNumber()) + "番:" + myDataList.get(y).getChildName() + " <" + myDataList.get(y).getAddress().get(0) + "> " + formatSchedule(String.valueOf(myDataList.get(y).getSchedule()));
}
}
return homeVisitDataString;
} }
//家庭訪問のscheduleを7桁の整数から(604120006月12日05時20分)に変換
private String formatSchedule(String schedule) {
Log.d("Maps", "schedule: " + schedule);
if (schedule.length() != 7) {
schedule = "0" + schedule;
String monthString = schedule.substring(0, 2);
String dayString = schedule.substring(2, 4);
String hourString = "0" + schedule.substring(4, 5);
String minuteString = schedule.substring(5, 7);
return monthString + "" + dayString + "" + hourString + "" + minuteString + "";
} else {
String monthString = "0" + schedule.substring(0, 1);
String dayString = schedule.substring(1, 3);
String hourString = schedule.substring(3, 5);
String minuteString = schedule.substring(5, 7);
return monthString + "" + dayString + "" + hourString + "" + minuteString + "";
}
}
// 共有プリファレンスからMyDataListを取得するメソッド
private List<MyDataClass> getMyDataList() {
// 共有プリファレンスのインスタンスを取得
SharedPreferences sharedPreferences = getSharedPreferences("MyDataList", MODE_PRIVATE);
// 共有プリファレンスからJSON形式のデータを取得
String jsonString = sharedPreferences.getString("myDataList", "");
// JSON形式のデータをMyDataListに変換
Gson gson = new Gson();
Type type = new TypeToken<List<MyDataClass>>() {
}.getType();
List<MyDataClass> myDataList = gson.fromJson(jsonString, type);
return myDataList;
}
//mapやgetscrollViewlに値を渡すハブの役割のメソッド
private void loadMapAndNames(String locationData, String nameData) { private void loadMapAndNames(String locationData, String nameData) {
try { try {
//mapに関するすべてのデータをリセット
latLngList.clear(); latLngList.clear();
nameList.clear(); nameList.clear();
colorList.clear(); colorList.clear();
locationsName.removeAllViews(); locationsName.removeAllViews();
mMap.clear(); mMap.clear();
// locationDataをスラッシュで分割して緯度経度リストを取得 String[] locArray = locationData.split("/");
String[] locArrayString = locationData.split("/"); String[] nameArray = nameData.split("/");
// nameDataをスラッシュで分割して名前リストを取得
String[] nameArrayString = nameData.split("/");
for (int i = 0; i < locArrayString.length; i++) { for (int i = 0; i < locArray.length; i++) {
// 緯度経度をカンマで分割してLatLngオブジェクトを作成 String[] latLng = locArray[i].split(",");
String[] latLngString = locArrayString[i].split(","); if (latLng.length == 2) {
if (latLngString.length == 2) { double latitude = Double.parseDouble(latLng[0]);
double latitudeDouble = Double.parseDouble(latLngString[0]); double longitude = Double.parseDouble(latLng[1]);
double longitudeDouble = Double.parseDouble(latLngString[1]); LatLng position = new LatLng(latitude, longitude);
LatLng position = new LatLng(latitudeDouble, longitudeDouble);
latLngList.add(position); latLngList.add(position);
// 名前リストから対応する名前を取得 String name = nameArray.length > i ? nameArray[i] : "Unknown";
String nameString = nameArrayString.length > i ? nameArrayString[i] : "Unknown"; nameList.add(name);
nameList.add(nameString);
// 色リストから次の色を取得 int color = getNextColor();
int colorInt = getNextColor(); colorList.add(color);
colorList.add(colorInt);
// 地図にピンを追加 addPinToMap(name, position, color);
addPinToMap(nameString, position, colorInt); addLocationToScrollView(name, color);
// スクロールビューに場所を追加
addLocationToScrollView(nameString, colorInt);
} }
} }
// 最初の位置にカメラを移動しルートを描画
if (!latLngList.isEmpty()) { if (!latLngList.isEmpty()) {
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLngList.get(0), 17)); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLngList.get(0), 17));
drawRoute(); // ルートを描画するメソッドを呼び出す drawRoute();
} }
} catch (Exception e) { } catch (Exception e) {
Log.e("Maps", "エラーが発生しました。原因は以下", e); Log.e("Maps", "Error loading maps and names", e);
} }
} }
// ルートを描画するメソッド
// Google マップの Directions API を使用してルート情報を取得しポリラインで描画
private void drawRoute() { private void drawRoute() {
new Thread(() -> { new Thread(() -> {
try { try {
@ -316,27 +200,22 @@ public class Maps extends FragmentActivity implements OnMapReadyCallback, View.O
} }
} }
urlBuilder.append("&mode=driving"); urlBuilder.append("&mode=driving");
//APiキーの設定 urlBuilder.append("&key=").append(getString(R.string.maps_api_key));
urlBuilder.append("&key=").append("AIzaSyBQ1Ak-I2NL5TP4K59ZI0VgzKk6HNZuusw");
String urlString = urlBuilder.toString(); URL url = new URL(urlBuilder.toString());
Log.d("Maps", "Directions API URL: " + urlString);
// Directions APIにリクエストを送信してレスポンスを取得
URL url = new URL(urlString);
HttpURLConnection conn = (HttpURLConnection) url.openConnection(); HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET"); conn.setRequestMethod("GET");
InputStreamReader isr = new InputStreamReader(conn.getInputStream()); InputStreamReader isr = new InputStreamReader(conn.getInputStream());
BufferedReader br = new BufferedReader(isr); BufferedReader br = new BufferedReader(isr);
StringBuilder jsonResults = new StringBuilder(); StringBuilder jsonResults = new StringBuilder();
String lineString; String line;
while ((lineString = br.readLine()) != null) { while ((line = br.readLine()) != null) {
jsonResults.append(lineString); jsonResults.append(line);
} }
br.close(); br.close();
Log.d("Maps", "API response: " + jsonResults.toString()); Log.d("Maps", "API response: " + jsonResults.toString());
// レスポンスからルート情報を取得してポリラインで描画
JsonObject jsonObject = new Gson().fromJson(jsonResults.toString(), JsonObject.class); JsonObject jsonObject = new Gson().fromJson(jsonResults.toString(), JsonObject.class);
JsonArray routes = jsonObject.getAsJsonArray("routes"); JsonArray routes = jsonObject.getAsJsonArray("routes");
if (routes.size() > 0) { if (routes.size() > 0) {
@ -349,41 +228,36 @@ public class Maps extends FragmentActivity implements OnMapReadyCallback, View.O
runOnUiThread(() -> mMap.addPolyline(new PolylineOptions().addAll(points).width(5).color(Color.BLUE))); runOnUiThread(() -> mMap.addPolyline(new PolylineOptions().addAll(points).width(5).color(Color.BLUE)));
} else { } else {
// ルートが見つからなかった場合のエラーメッセージを表示
JsonPrimitive errorMessage = jsonObject.getAsJsonPrimitive("error_message"); JsonPrimitive errorMessage = jsonObject.getAsJsonPrimitive("error_message");
if (errorMessage != null) { if (errorMessage != null) {
Log.e("Maps", "エラーが発生しました。原因は以下: " + errorMessage.getAsString()); Log.e("Maps", "Error: " + errorMessage.getAsString());
} else { } else {
Log.e("Maps", "原因不明のエラー"); Log.e("Maps", "No routes found and no error message provided");
} }
} }
} catch (Exception e) { } catch (Exception e) {
Log.e("Maps", "ルートの描画に失敗しました", e); Log.e("Maps", "Error drawing route", e);
} }
}).start(); }).start();
} }
// エンコードされた文字列から座標情報をデコードするためのメソッド
private List<LatLng> decodePoly(String encoded) { private List<LatLng> decodePoly(String encoded) {
List<LatLng> poly = new ArrayList<>(); // 座標情報を格納するリスト List<LatLng> poly = new ArrayList<>();
int index = 0, len = encoded.length();// 文字列のインデックスと長さ int index = 0, len = encoded.length();
int latInt = 0, lng = 0; // 緯度と経度の初期値 int lat = 0, lng = 0;
// 文字列の長さに達するまで繰り返す
while (index < len) { while (index < len) {
int b, shift = 0, result = 0; int b, shift = 0, result = 0;
// バイト値を取得しビットシフトとOR演算を行って座標値を復元する
do { do {
b = encoded.charAt(index++) - 63; b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift; result |= (b & 0x1f) << shift;
shift += 5; shift += 5;
} while (b >= 0x20); } while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1)); int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
latInt += dlat; lat += dlat;
shift = 0; shift = 0;
result = 0; result = 0;
// バイト値を取得しビットシフトとOR演算を行って座標値を復元する
do { do {
b = encoded.charAt(index++) - 63; b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift; result |= (b & 0x1f) << shift;
@ -391,87 +265,57 @@ public class Maps extends FragmentActivity implements OnMapReadyCallback, View.O
} while (b >= 0x20); } while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1)); int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng; lng += dlng;
// LatLngオブジェクトを作成してリストに追加する
LatLng p = new LatLng((((double) latInt / 1E5)), (((double) lng / 1E5))); LatLng p = new LatLng((((double) lat / 1E5)), (((double) lng / 1E5)));
poly.add(p); poly.add(p);
} }
// 座標情報のリストを返す
return poly; return poly;
} }
// Colorクラスを使用して与えられた色から色相値を計算するメソッド
private float getHueFromColor(int color) { private float getHueFromColor(int color) {
float[] hsv = new float[3]; float[] hsv = new float[3];
Color.colorToHSV(color, hsv);//整数の色値をHSV色相彩度明度の形式に変換し色相値を取得します Color.colorToHSV(color, hsv);
return hsv[0]; return hsv[0];
} }
//mapにピンを追加するメソッド
private void addPinToMap(String locationName, LatLng position, int color) { private void addPinToMap(String locationName, LatLng position, int color) {
// マーカーオプションを作成し位置タイトル色を設定する Marker marker = mMap.addMarker(new MarkerOptions()
Marker marker = mMap.addMarker(new MarkerOptions().position(position).title(locationName).icon(BitmapDescriptorFactory.defaultMarker(getHueFromColor(color)))); .position(position)
.title(locationName)
.icon(BitmapDescriptorFactory.defaultMarker(getHueFromColor(color)))
);
if (marker != null) { if (marker != null) {
marker.setTag(locationName); marker.setTag(locationName);
} }
} }
// スクロールビューに位置情報を追加するメソッド
// スクロールビューに位置情報を追加するメソッド
// スクロールビューに位置情報を追加するメソッド
private void addLocationToScrollView(String locationName, int color) { private void addLocationToScrollView(String locationName, int color) {
runOnUiThread(() -> { runOnUiThread(() -> {
try { try {
// テキストビューの作成
TextView textView = new TextView(this); TextView textView = new TextView(this);
textView.setText(locationName); textView.setText(locationName);
textView.setTextSize(20); textView.setTextSize(20);
textView.setPadding(16, 16, 16, 16); textView.setPadding(16, 16, 16, 16);
textView.setTextColor(Color.BLACK); // 文字色を黒に設定 textView.setBackgroundColor(color);
textView.setBackgroundColor(Color.WHITE); // 背景色を白に設定
// 円を作成 View underline = new View(this);
ShapeDrawable circle = new ShapeDrawable(new OvalShape()); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
circle.setIntrinsicWidth(30); LinearLayout.LayoutParams.MATCH_PARENT,
circle.setIntrinsicHeight(30); 3
circle.getPaint().setColor(color); );
params.setMargins(0, 0, 0, 16);
underline.setLayoutParams(params);
underline.setBackgroundColor(Color.BLACK);
// 左側に円を表示するためにDrawableを設定 locationsName.addView(textView);
textView.setCompoundDrawablesWithIntrinsicBounds(circle, null, null, null); locationsName.addView(underline);
textView.setCompoundDrawablePadding(16);
// テキストビューにクリックリスナーを追加
textView.setOnClickListener(v -> {
for (int j = 0; j < nameList.size(); j++) {
if (nameList.get(j).equals(locationName)) {
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLngList.get(j), 17));
break;
}
}
});
// ボーダーラインの作成
View border = new View(this);
border.setLayoutParams(new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT, // 横幅は親と同じ
2 // 高さは2dp
));
border.setBackgroundColor(Color.GRAY); // ボーダーラインの色を設定
// レイアウトの作成
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
layout.addView(textView);
layout.addView(border);
// スクロールビューにレイアウトを追加
locationsName.addView(layout);
} catch (Exception e) { } catch (Exception e) {
Log.e("Maps", "エラーが発生しました。原因は以下", e); Log.e("Maps", "Error adding location to scroll view", e);
} }
}); });
} }
private int getNextColor() { private int getNextColor() {
int color = COLORS[colorIndex]; int color = COLORS[colorIndex];
colorIndex = (colorIndex + 1) % COLORS.length; colorIndex = (colorIndex + 1) % COLORS.length;
@ -485,20 +329,13 @@ public class Maps extends FragmentActivity implements OnMapReadyCallback, View.O
} }
} }
@Override @Override
//マーカーがクリックされた際の処理を行うメソッド
public boolean onMarkerClick(Marker marker) { public boolean onMarkerClick(Marker marker) {
// マーカーから場所の名前を取得します
String locationName = (String) marker.getTag(); String locationName = (String) marker.getTag();
// 場所の名前がnullではない場合に処理を実行します
if (locationName != null) { if (locationName != null) {
// マーカーのタイトルとして場所の名前を設定します
marker.setTitle(locationName); marker.setTitle(locationName);
// マーカーの情報ウィンドウを表示します
marker.showInfoWindow(); marker.showInfoWindow();
} }
// デフォルトの動作も実行するためにfalseを返します
return false; return false;
} }
} }

View File

@ -1,5 +1,6 @@
package com.example.oplogy; package com.example.oplogy;
import com.google.android.gms.maps.model.LatLng;
import com.google.firebase.Timestamp; import com.google.firebase.Timestamp;
import java.util.List; import java.util.List;
@ -29,9 +30,7 @@ public class MyDataClass {
private Long secondDayTimezoneLong; private Long secondDayTimezoneLong;
private String secondDayParentStartTimeString; private String secondDayParentStartTimeString;
private String secondDayParentEndTimeString; private String secondDayParentEndTimeString;
private String latLngString; private LatLng latLng;
private String ScheduleDayString;
public MyDataClass(String patronName, int classId, List<String> address, List<Timestamp> firstDay, int studentNumber, String childName, List<Timestamp> thirdDay, List<Timestamp> secondDay) { public MyDataClass(String patronName, int classId, List<String> address, List<Timestamp> firstDay, int studentNumber, String childName, List<Timestamp> thirdDay, List<Timestamp> secondDay) {
@ -240,20 +239,11 @@ public class MyDataClass {
return secondDayStartDateString; return secondDayStartDateString;
} }
public void setLatLngString(String latLng) { public void setLatLng(LatLng latLng) {
this.latLngString = latLng; this.latLng=latLng;
} }
public String getLatLngString() { public LatLng getLatLng() {
return latLngString; return latLng;
}
public void setScheduleDay(String ScheduleDayString) {
this.ScheduleDayString = ScheduleDayString;
}
public String getScheduleDay() {
return ScheduleDayString;
} }
} }

View File

@ -0,0 +1,14 @@
package com.example.oplogy;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
public class RootSearchActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.root_search);
}
}

View File

@ -2,6 +2,7 @@ package com.example.oplogy;
import static android.content.ContentValues.TAG; import static android.content.ContentValues.TAG;
import android.annotation.SuppressLint; import android.annotation.SuppressLint;
import android.app.DatePickerDialog; import android.app.DatePickerDialog;
import android.app.TimePickerDialog; import android.app.TimePickerDialog;
@ -30,27 +31,17 @@ import java.util.concurrent.Executors;
public class SetUpActivity extends FragmentActivity public class SetUpActivity extends FragmentActivity
implements TimePickerDialog.OnTimeSetListener, DatePickerDialog.OnDateSetListener { implements TimePickerDialog.OnTimeSetListener, DatePickerDialog.OnDateSetListener {
String teacherNameString; String teacherName;
String startPointString; String startPoint;
String firstDayString; String firstDay;
String secondDayString; String secondDay;
String thirdDayString; String thirdDay;
String startTimeString; String startTime;
String endTimeString; String endTime;
String intervalTimeString; String intervalTime;
String startBreakTimeString; String startBreakTime;
String endBreakTimeString; String endBreakTime;
int totalStudentString; int totalStudent;
String stringYearString;
String stringMonthString;
String stringDayOfMonthString;
String stringHourOfDayString;
String stringMinuteString;
Button setFirstDay;
Button setSecondDay;
Button setThirdDay;
Button setStartTimeButton;
Button setEndTimeButton;
private TextView setTeacherName; private TextView setTeacherName;
private TextView setStartPoint; private TextView setStartPoint;
private TextView setStartTime; private TextView setStartTime;
@ -58,8 +49,24 @@ public class SetUpActivity extends FragmentActivity
private TextView setStartBreakTime; private TextView setStartBreakTime;
private TextView setEndBreakTime; private TextView setEndBreakTime;
private TextView setTotalStudent; private TextView setTotalStudent;
private int isDateSelectedInt; private int isDateSelected;
private int isStartTimeSelectedInt; private int isStartTimeSelected;
String stringYear;
String stringMonth;
String stringDayOfMonth;
String stringHourOfDay;
String stringMinute;
Button setFirstDay;
Button setSecondDay;
Button setThirdDay;
Button setStartTimeButton;
Button setEndTimeButton;
@SuppressLint("MissingInflatedId") @SuppressLint("MissingInflatedId")
@Override @Override
@ -67,7 +74,7 @@ public class SetUpActivity extends FragmentActivity
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.activity_set_up); setContentView(R.layout.activity_set_up);
int classIdInt = getIntent().getIntExtra("classId", 100000); int classId= getIntent().getIntExtra("classId", 100000);
setTeacherName = findViewById(R.id.teacherName); //先生の名前 setTeacherName = findViewById(R.id.teacherName); //先生の名前
setStartPoint = findViewById(R.id.startPoint); //開始地点 setStartPoint = findViewById(R.id.startPoint); //開始地点
@ -97,50 +104,38 @@ public class SetUpActivity extends FragmentActivity
Button reset = findViewById(R.id.resetButton); Button reset = findViewById(R.id.resetButton);
toMain.setOnClickListener(view -> { toMain.setOnClickListener(view -> {
Intent intent = new Intent(SetUpActivity.this, SettingView.class); //main画面へ戻る処理 Intent intent = new Intent(SetUpActivity.this,MainActivity.class); //main画面へ戻る処理
startActivity(intent); startActivity(intent);
}); });
setUp.setOnClickListener(view -> { setUp.setOnClickListener(view -> {
teacherNameString = setTeacherName.getText().toString(); //各変数に値を挿入 teacherName = setTeacherName.getText().toString(); //各変数に値を挿入
startPointString = setStartPoint.getText().toString(); Log.d(TAG, "Teacher Name: " + teacherName);
firstDayString = setFirstDay.getText().toString(); startPoint = setStartPoint.getText().toString();
secondDayString = setSecondDay.getText().toString(); Log.d(TAG, "Start Point: " + startPoint);
thirdDayString = setThirdDay.getText().toString(); Log.d(TAG, "First Day:" + firstDay);
startTimeString = setStartTime.getText().toString(); Log.d(TAG, "Second Day:" + secondDay);
endTimeString = setEndTime.getText().toString(); Log.d(TAG, "Third Day:" + thirdDay);
startBreakTimeString = setStartBreakTime.getText().toString(); Log.d(TAG, "Start Time" + startTime);
endBreakTimeString = setEndBreakTime.getText().toString(); Log.d(TAG, "End Time" + endTime);
if (setTenMinute.isChecked()){ //ラジオボタンの状態を取得
try { intervalTime = "10";
totalStudentString = Integer.parseInt(setTotalStudent.getText().toString());
} catch (NumberFormatException e) {
Toast.makeText(SetUpActivity.this, "記入欄にすべて入力を済ませてから押してください", Toast.LENGTH_SHORT).show();
return;
}
Log.d(TAG, "Teacher Name: " + teacherNameString);
Log.d(TAG, "Start Point: " + startPointString);
Log.d(TAG, "First Day:" + firstDayString);
Log.d(TAG, "Second Day:" + secondDayString);
Log.d(TAG, "Third Day:" + thirdDayString);
Log.d(TAG, "Start Time" + startTimeString);
Log.d(TAG, "End Time" + endTimeString);
if (setTenMinute.isChecked()) { //ラジオボタンの状態を取得
intervalTimeString = "10";
} else if (setFifteenMinute.isChecked()) { } else if (setFifteenMinute.isChecked()) {
intervalTimeString = "15"; intervalTime = "15";
} else if (setThirtyMinute.isChecked()) { } else if (setThirtyMinute.isChecked()) {
intervalTimeString = "30"; intervalTime = "30";
} else { } else {
intervalTimeString = "0"; intervalTime = "0";
} }
Log.d(TAG, "Interval Time" + intervalTimeString); Log.d(TAG, "Interval Time" + intervalTime);
Log.d(TAG, "Start Break Time" + startBreakTimeString); Log.d(TAG, "Start Break Time" + startBreakTime);
Log.d(TAG, "End Break Time" + endBreakTimeString); Log.d(TAG, "End Break Time" + endBreakTime);
Log.d(TAG, "Total Student" + totalStudentString); totalStudent = Integer.parseInt(setTotalStudent.getText().toString()); //数値型に変更
Log.d(TAG, "Total Student" + totalStudent);
Log.d(TAG, "onClick: できてるよ"); Log.d(TAG, "onClick: できてるよ");
// データベースへの登録処理 // データベースへの登録処理
ExecutorService executor = Executors.newSingleThreadExecutor(); ExecutorService executor = Executors.newSingleThreadExecutor();
@ -152,19 +147,19 @@ public class SetUpActivity extends FragmentActivity
SetUpTableDao setUpTableDao = db.setUpTableDao(); SetUpTableDao setUpTableDao = db.setUpTableDao();
// Roomの操作を行う // Roomの操作を行う
SetUpTable setUpTable = new SetUpTable( SetUpTable setUpTable = new SetUpTable(
teacherNameString, teacherName,
startPointString, startPoint,
startTimeString, startTime,
endTimeString, endTime,
intervalTimeString, intervalTime,
startBreakTimeString, startBreakTime,
endBreakTimeString, endBreakTime,
totalStudentString, totalStudent,
classIdInt classId
); );
// 同じ名前のエントリが存在するかどうかを確認 // 同じ名前のエントリが存在するかどうかを確認
SetUpTable existingSetUpTable = setUpTableDao.findByName(teacherNameString); SetUpTable existingSetUpTable = setUpTableDao.findByName(teacherName);
if (existingSetUpTable != null) { if (existingSetUpTable != null) {
// エントリが存在する場合はそのエントリを更新 // エントリが存在する場合はそのエントリを更新
setUpTable.setId(existingSetUpTable.getId()); // 既存のIDを設定 setUpTable.setId(existingSetUpTable.getId()); // 既存のIDを設定
@ -177,51 +172,52 @@ public class SetUpActivity extends FragmentActivity
runOnUiThread(() -> Toast.makeText(SetUpActivity.this, "登録しました", Toast.LENGTH_SHORT).show()); runOnUiThread(() -> Toast.makeText(SetUpActivity.this, "登録しました", Toast.LENGTH_SHORT).show());
} }
//家庭訪問日を保存する共有プリファレンス //家庭訪問日を保存する共有プリファレンス
SharedPreferences sharedPreferences = getSharedPreferences("visitingDate", MODE_PRIVATE); SharedPreferences sharedPreferences=getSharedPreferences("visitingDate",MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit(); SharedPreferences.Editor editor= sharedPreferences.edit();
editor.putString("day1", firstDayString); editor.putString("day1",firstDay);
editor.putString("day2", secondDayString); editor.putString("day2",secondDay);
editor.putString("day3", thirdDayString); editor.putString("day3",thirdDay);
editor.apply(); editor.apply();
}); });
}); });
setFirstDay.setOnClickListener(v -> { setFirstDay.setOnClickListener(v ->{
isDateSelectedInt = 1; isDateSelected = 1;
showDatePickerDialog(); //DatePickerの表示 showDatePickerDialog(); //DatePickerの表示
}); });
setSecondDay.setOnClickListener(v -> { setSecondDay.setOnClickListener(v ->{
isDateSelectedInt = 2; isDateSelected = 2;
showDatePickerDialog(); showDatePickerDialog();
}); });
setThirdDay.setOnClickListener(v -> { setThirdDay.setOnClickListener(v ->{
isDateSelectedInt = 3; isDateSelected = 3;
showDatePickerDialog(); showDatePickerDialog();
}); });
setStartTimeButton.setOnClickListener(v -> { setStartTimeButton.setOnClickListener(v -> {
isStartTimeSelectedInt = 1; //ボタンの判別 isStartTimeSelected = 1; //ボタンの判別
showTimePickerDialog(); //TimePickerの表示 showTimePickerDialog(); //TimePickerの表示
}); });
setEndTimeButton.setOnClickListener(v -> { setEndTimeButton.setOnClickListener(v -> {
isStartTimeSelectedInt = 2; isStartTimeSelected = 2;
showTimePickerDialog(); showTimePickerDialog();
}); });
setStartBreakTime.setOnClickListener(v -> { setStartBreakTime.setOnClickListener(v -> {
isStartTimeSelectedInt = 3; isStartTimeSelected = 3;
showTimePickerDialog(); showTimePickerDialog();
}); });
setEndBreakTime.setOnClickListener(v -> { setEndBreakTime.setOnClickListener(v -> {
isStartTimeSelectedInt = 4; isStartTimeSelected = 4;
showTimePickerDialog(); showTimePickerDialog();
}); });
@ -246,31 +242,30 @@ public class SetUpActivity extends FragmentActivity
}); });
} }
@Override @Override
public void onDateSet(DatePicker datePicker, int year, int month, int dayOfMonth) { //Dateを成形する public void onDateSet(DatePicker datePicker, int year, int month, int dayOfMonth) { //Dateを成形する
// DatePickerDialogで選択された日付を処理する // DatePickerDialogで選択された日付を処理する
String str = String.format(Locale.JAPAN, "%02d/%02d", month + 1, dayOfMonth); // TextViewに表示する日付の形式を設定 String str = String.format(Locale.JAPAN, "%02d/%02d", month + 1, dayOfMonth); // TextViewに表示する日付の形式を設定
if (isDateSelectedInt == 1) { if (isDateSelected == 1) {
stringYearString = String.valueOf(year); // stringYear = String.valueOf(year); //
stringMonthString = String.format(Locale.JAPAN, "%02d", month + 1); // stringMonth = String.format(Locale.JAPAN, "%02d", month + 1); //
stringDayOfMonthString = String.format(Locale.JAPAN, "%02d", dayOfMonth); // stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth); //
firstDayString = stringYearString + stringMonthString + stringDayOfMonthString; firstDay = stringYear + stringMonth + stringDayOfMonth;
setFirstDay.setText(str); setFirstDay.setText(str);
} else if (isDateSelectedInt == 2) { } else if (isDateSelected == 2) {
stringYearString = String.valueOf(year); stringYear = String.valueOf(year);
stringMonthString = String.format(Locale.JAPAN, "%02d", month + 1); stringMonth = String.format(Locale.JAPAN, "%02d", month + 1);
stringDayOfMonthString = String.format(Locale.JAPAN, "%02d", dayOfMonth); stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth);
secondDayString = stringYearString + stringMonthString + stringDayOfMonthString; secondDay = stringYear + stringMonth + stringDayOfMonth;
setSecondDay.setText(str); setSecondDay.setText(str);
} else if (isDateSelectedInt == 3) { } else if (isDateSelected == 3) {
stringYearString = String.valueOf(year); stringYear = String.valueOf(year);
stringMonthString = String.format(Locale.JAPAN, "%02d", month + 1); stringMonth = String.format(Locale.JAPAN, "%02d", month + 1);
stringDayOfMonthString = String.format(Locale.JAPAN, "%02d", dayOfMonth); stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth);
thirdDayString = stringYearString + stringMonthString + stringDayOfMonthString; thirdDay = stringYear + stringMonth + stringDayOfMonth;
setThirdDay.setText(str); setThirdDay.setText(str);
} }
@ -281,28 +276,28 @@ public class SetUpActivity extends FragmentActivity
public void onTimeSet(TimePicker view, int hourOfDay, int minute) { public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
String str = String.format(Locale.JAPAN, "%02d:%02d", hourOfDay, minute); // Textviewに保存する形式を設定 String str = String.format(Locale.JAPAN, "%02d:%02d", hourOfDay, minute); // Textviewに保存する形式を設定
if (isStartTimeSelectedInt == 1) { if (isStartTimeSelected == 1) {
stringHourOfDayString = String.format("%02d", hourOfDay); stringHourOfDay = String.format("%02d", hourOfDay);
stringMinuteString = String.format("%02d", minute); stringMinute = String.format("%02d", minute);
startTimeString = stringHourOfDayString + stringMinuteString; startTime = stringHourOfDay + stringMinute;
setStartTime.setText(str); setStartTime.setText(str);
} else if (isStartTimeSelectedInt == 2) { } else if (isStartTimeSelected == 2) {
stringHourOfDayString = String.format("%02d", hourOfDay); stringHourOfDay = String.format("%02d", hourOfDay);
stringMinuteString = String.format("%02d", minute); stringMinute = String.format("%02d", minute);
endTimeString = stringHourOfDayString + stringMinuteString; endTime = stringHourOfDay + stringMinute;
setEndTime.setText(str); setEndTime.setText(str);
} else if (isStartTimeSelectedInt == 3) { } else if (isStartTimeSelected == 3) {
stringHourOfDayString = String.format("%02d", hourOfDay); stringHourOfDay = String.format("%02d", hourOfDay);
stringMinuteString = String.format("%02d", minute); stringMinute = String.format("%02d", minute);
startBreakTimeString = stringHourOfDayString + stringMinuteString; startBreakTime =stringHourOfDay + stringMinute;
setStartBreakTime.setText(" " + str + " "); setStartBreakTime.setText(" " + str + " ");
} else if (isStartTimeSelectedInt == 4) { } else if (isStartTimeSelected == 4) {
stringHourOfDayString = String.format("%02d", hourOfDay); stringHourOfDay = String.format("%02d", hourOfDay);
stringMinuteString = String.format("%02d", minute); stringMinute = String.format("%02d", minute);
endBreakTimeString = stringHourOfDayString + stringMinuteString; endBreakTime = stringHourOfDay + stringMinute;
setEndBreakTime.setText(" " + str + " "); setEndBreakTime.setText(" " + str + " ");
} }
} }

View File

@ -44,9 +44,4 @@ public interface SetUpTableDao {
//クラスIDの取得 //クラスIDの取得
@Query("SELECT classId FROM SetUpTable") @Query("SELECT classId FROM SetUpTable")
int getClassId(); int getClassId();
@Query("SELECT startPoint FROM setuptable")
String getStartPoint();
} }

View File

@ -1,190 +0,0 @@
package com.example.oplogy;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import androidx.room.Room;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class SettingView extends AppCompatActivity implements View.OnClickListener {
// formコピー用のURL
private static final String URL_TO_COPY = "https://docs.google.com/forms/d/e/1FAIpQLScKI_ca01nO7die7SqZyThiqa7NB7gcucMJtiV_-sc3eZX6KQ/viewform";
private View backButton;
private View creatUUID;
private View imageUuid;
private View setUp;
private View imageSetup;
private View formURL;
private View imageFormURL;
private AlertDialog alertDialog;
private int classId;
private FirestoreReception_classIdDatabase firestoreReception_classIdDatabase;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_setting_view);
// 戻るボタンの処理
backButton = findViewById(R.id.BackMain_fromSetting);
backButton.setOnClickListener(this);
// ID作成用のインテント
creatUUID = findViewById(R.id.creatUUID);
creatUUID.setOnClickListener(this);
imageUuid = findViewById(R.id.imageUuid);
imageUuid.setOnClickListener(this);
// セットアップ用のインテント
setUp = findViewById(R.id.setUp);
setUp.setOnClickListener(this);
imageSetup = findViewById(R.id.imageSetup);
imageSetup.setOnClickListener(this);
// formコピー用のインテント
formURL = findViewById(R.id.formURL);
formURL.setOnClickListener(this);
imageFormURL = findViewById(R.id.imageFormURL);
imageFormURL.setOnClickListener(this);
}
@Override
public void onClick(View view) {
if (view == backButton) {
Intent intent = new Intent(SettingView.this, MainActivity.class);
startActivity(intent);
}
// ID作成のクリック処理
if (view == creatUUID) {
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
}
if (view == imageUuid) {
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
}
// セットアップのクリック処理
if (view == setUp) {
Intent toSetup = new Intent(SettingView.this, SetUpActivity.class);
toSetup.putExtra("classId", classId);
startActivity(toSetup);
}
if (view == imageSetup) {
Intent toSetup = new Intent(SettingView.this, SetUpActivity.class);
startActivity(toSetup);
}
// formコピー用のクリック処理
if (view == formURL) {
copyUrlToClipboard(URL_TO_COPY);
}
if (view == imageFormURL) {
copyUrlToClipboard(URL_TO_COPY);
}
}
//ID作成表示に関する処理
private void showUUIDYesNoDialog() {
firestoreReception_classIdDatabase = new FirestoreReception_classIdDatabase();
List<Integer> classIdList = firestoreReception_classIdDatabase.getAllDocumentsFromClassIdDatabase();
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("ID");
builder.setMessage("あなたのIDを表示/もしくは新規で作成しますか?");
//作成処理
builder.setPositiveButton("作成", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
classId = CreateUUID.generateUUID(classIdList);
// 生成されたIDを表示するメソッド
showClassIdDialog("生成されたID", classId);
}
});
//表示処理
builder.setNegativeButton("表示", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//roomを扱うため非同期処理
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(() -> {
// 現在のクラスIDを取得
int currentClassId = getCurrentClassIdFromRoom();
if (currentClassId == 0) {
currentClassId = classId;
}
final int showDialogClassId = currentClassId;
runOnUiThread(() -> {
// 現在のクラスIDを表示するダイアログ
showClassIdDialog("現在のID", showDialogClassId);
});
});
executor.shutdown();
}
});
alertDialog = builder.create();
alertDialog.show();
}
//Roomから現在のクラスIDを取得するメソッド
private int getCurrentClassIdFromRoom() {
AppDatabase db = getDatabaseInstance();
SetUpTableDao setUpTableDao = db.setUpTableDao();
// 現在のクラスIDを取得
return setUpTableDao.getClassId();
}
//クラスIDを表示するダイアログ
private void showClassIdDialog(String title, int classId) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(title);
builder.setMessage("ID: " + classId);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
//クリップボードにURLをコピーする処理
private void copyUrlToClipboard(String url) {
try {
ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
ClipData clip = ClipData.newPlainText("URL", url);
if (clipboard != null) {
clipboard.setPrimaryClip(clip);
Toast.makeText(this, "GoogleFormのURLをコピーしました", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, "エラー コピーできませんでした", Toast.LENGTH_SHORT).show();
}
} catch (Exception e) {
Toast.makeText(this, "Error copying URL: " + e.getMessage(), Toast.LENGTH_SHORT).show();
}
}
// データベースのインスタンスを取得するメソッド
private AppDatabase getDatabaseInstance() {
return Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "SetUpTable").build();
}
}

View File

@ -1,21 +1,23 @@
package com.example.oplogy; package com.example.oplogy;
import android.os.Bundle;
import android.util.Log;
import android.widget.ImageView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView; import androidx.recyclerview.widget.RecyclerView;
import android.os.Bundle;
import android.widget.ImageView;
import com.example.oplogy.databinding.SubmissionBinding;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
public class SubmissionActivity extends AppCompatActivity { public class SubmissionActivity extends AppCompatActivity {
private final List<SubmissionStudent> studentsList = new ArrayList<>();
private RecyclerView recyclerView; private RecyclerView recyclerView;
private SubmissionAdapter submissionAdapter; private SubmissionAdapter submissionAdapter;
private List<SubmissionStudent> students = new ArrayList<>();
ArrayList<Integer> studentNumbers = new ArrayList<>();
private int totalStudent = 10;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
@ -24,32 +26,33 @@ public class SubmissionActivity extends AppCompatActivity {
// 戻るボタンの処理 // 戻るボタンの処理
ImageView backButton = findViewById(R.id.BackMain_fromSubmission); ImageView backButton = findViewById(R.id.BackMain_fromSubmission);
backButton.setOnClickListener(v -> finish()); backButton.setOnClickListener(v -> {
finish();
});
// インテントから提出状況の生徒の数を取得
studentNumbers=getIntent().getIntegerArrayListExtra("submissionStudents");
// RecyclerViewとアダプターの初期化
recyclerView = findViewById(R.id.recyclerView); recyclerView = findViewById(R.id.recyclerView);
recyclerView.setLayoutManager(new LinearLayoutManager(this)); recyclerView.setLayoutManager(new LinearLayoutManager(this));
submissionAdapter = new SubmissionAdapter(studentsList); submissionAdapter = new SubmissionAdapter(students);
recyclerView.setAdapter(submissionAdapter); recyclerView.setAdapter(submissionAdapter);
// 生徒のリストを取得 // 生徒のリストを取得
fetchStudents(); fetchStudents();
} }
private void fetchStudents() { private void fetchStudents() {
// インテントから生徒のリストを取得 // インテントから生徒のリストを取得
ArrayList<SubmissionStudent> submissionStudentsList = getIntent().getParcelableArrayListExtra("submissionStudents"); ArrayList<SubmissionStudent> submissionStudents = getIntent().getParcelableArrayListExtra("submissionStudents");
if (submissionStudentsList != null) { // 生徒のリストを反復処理しそれをRecyclerViewに表示
Log.d("SubmissionActivity", "Size of submissionStudentsList: " + submissionStudentsList.size()); for (SubmissionStudent student : submissionStudents) {
students.add(student);
studentsList.addAll(submissionStudentsList);
} else {
Log.e("SubmissionActivity", "submissionStudentsList is null");
Toast.makeText(this, "生徒のリストが取得できませんでした", Toast.LENGTH_SHORT).show();
} }
// データが変更されたことをアダプターに通知 // データが変更されたことをアダプターに通知
submissionAdapter.notifyDataSetChanged(); submissionAdapter.notifyDataSetChanged();
} }
} }

View File

@ -5,58 +5,12 @@ import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.widget.TextView; import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView; import androidx.recyclerview.widget.RecyclerView;
import java.util.List; import java.util.List;
public class SubmissionAdapter extends RecyclerView.Adapter<SubmissionAdapter.StudentViewHolder> { public class SubmissionAdapter extends RecyclerView.Adapter<SubmissionAdapter.StudentViewHolder> {
private final List<SubmissionStudent> studentsList; private List<SubmissionStudent> students;
public SubmissionAdapter(List<SubmissionStudent> students) {
this.studentsList = students;
}
@NonNull
@Override
public StudentViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.row_submission, parent, false);
return new StudentViewHolder(view);
}
@Override
public void onBindViewHolder(StudentViewHolder holder, int position) {
SubmissionStudent student = studentsList.get(position);
holder.studentNumberTextView.setText(String.valueOf(student.getStudentNumber()));
updateStatus(holder, student.isSubmitted());
}
@Override
public int getItemCount() {
return studentsList.size();
}
//真偽値に応じて提出済みか未提出をセットする
private void updateStatus(StudentViewHolder holder, boolean isSubmitted) {
if (isSubmitted) {
holder.statusTextView.setText("提出済み");
setColors(holder, Color.BLACK, Color.WHITE);
} else {
holder.statusTextView.setText("未提出");
setColors(holder, Color.RED, Color.WHITE);
}
}
//真偽値に応じて色をセットする
private void setColors(StudentViewHolder holder, int backgroundColor, int textColor) {
holder.statusTextView.setBackgroundColor(backgroundColor);
holder.statusTextView.setTextColor(textColor);
holder.studentNumberTextView.setBackgroundColor(backgroundColor);
holder.studentNumberTextView.setTextColor(textColor);
}
public static class StudentViewHolder extends RecyclerView.ViewHolder { public static class StudentViewHolder extends RecyclerView.ViewHolder {
public TextView studentNumberTextView; public TextView studentNumberTextView;
@ -69,4 +23,40 @@ public class SubmissionAdapter extends RecyclerView.Adapter<SubmissionAdapter.St
statusTextView = view.findViewById(R.id.statusTextView); statusTextView = view.findViewById(R.id.statusTextView);
} }
} }
public SubmissionAdapter(List<SubmissionStudent> students) {
this.students = students;
}
@Override
public StudentViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.row_submission, parent, false);
return new StudentViewHolder(view);
}
@Override
public void onBindViewHolder(StudentViewHolder holder, int position) {
SubmissionStudent student = students.get(position);
holder.studentNumberTextView.setText(String.valueOf(student.getStudentNumber()));
// 提出済みかどうかで表示を変える
if (student.isSubmitted()) {
holder.statusTextView.setText("提出済み");
holder.statusTextView.setBackgroundColor(Color.BLACK);
holder.statusTextView.setTextColor(Color.WHITE);
holder.studentNumberTextView.setBackgroundColor(Color.BLACK);
holder.studentNumberTextView.setTextColor(Color.WHITE);
} else {
holder.statusTextView.setText("未提出");
holder.statusTextView.setBackgroundColor(Color.RED);
holder.statusTextView.setTextColor(Color.WHITE);
holder.studentNumberTextView.setBackgroundColor(Color.RED);
holder.studentNumberTextView.setTextColor(Color.WHITE);
}
}
@Override
public int getItemCount() {
return students.size();
}
} }

View File

@ -3,16 +3,16 @@ import android.os.Parcel;
import android.os.Parcelable; import android.os.Parcelable;
public class SubmissionStudent implements Parcelable { public class SubmissionStudent implements Parcelable {
private int studentNumberInt; private int studentNumber;
private boolean submitted; private boolean submitted;
public SubmissionStudent(int studentNumber, boolean submitted) { public SubmissionStudent(int studentNumber, boolean submitted) {
this.studentNumberInt = studentNumber; this.studentNumber = studentNumber;
this.submitted = submitted; this.submitted = submitted;
} }
protected SubmissionStudent(Parcel in) { protected SubmissionStudent(Parcel in) {
studentNumberInt = in.readInt(); studentNumber = in.readInt();
submitted = in.readByte() != 0; submitted = in.readByte() != 0;
} }
@ -29,7 +29,7 @@ public class SubmissionStudent implements Parcelable {
}; };
public int getStudentNumber() { public int getStudentNumber() {
return studentNumberInt; return studentNumber;
} }
public boolean isSubmitted() { public boolean isSubmitted() {
@ -43,7 +43,7 @@ public class SubmissionStudent implements Parcelable {
@Override @Override
public void writeToParcel(Parcel parcel, int i) { public void writeToParcel(Parcel parcel, int i) {
parcel.writeInt(studentNumberInt); parcel.writeInt(studentNumber);
parcel.writeByte((byte) (submitted ? 1 : 0)); parcel.writeByte((byte) (submitted ? 1 : 0));
} }
} }

View File

@ -2,6 +2,7 @@ package com.example.oplogy;
import android.app.Dialog; import android.app.Dialog;
import android.app.TimePickerDialog; import android.app.TimePickerDialog;
import android.content.Context;
import android.os.Bundle; import android.os.Bundle;
import android.widget.TimePicker; import android.widget.TimePicker;
@ -17,14 +18,14 @@ public class TimePick extends DialogFragment implements
@Override @Override
public Dialog onCreateDialog(Bundle savedInstanceState) { // TimePeckerの生成 public Dialog onCreateDialog(Bundle savedInstanceState) { // TimePeckerの生成
final Calendar c = Calendar.getInstance(); final Calendar c = Calendar.getInstance();
int hourInt = c.get(Calendar.HOUR_OF_DAY); int hour = c.get(Calendar.HOUR_OF_DAY);
int minuteInt = c.get(Calendar.MINUTE); int minute = c.get(Calendar.MINUTE);
return new TimePickerDialog(getActivity(), return new TimePickerDialog((Context) getActivity(),
(TimePickerDialog.OnTimeSetListener) getActivity(), hourInt, minuteInt, true); (TimePickerDialog.OnTimeSetListener) getActivity(), hour, minute, true);
} }
@Override @Override
public void onTimeSet(TimePicker view, int hourOfDayInt, int minuteInt) { public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
} }
} }

View File

@ -0,0 +1,14 @@
package com.example.oplogy;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class TutorialActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tutorial);
}
}

View File

@ -1,126 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="13"
tools:context=".SettingView">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:gravity="center"
android:orientation="horizontal"
android:weightSum="10">
<ImageView
android:id="@+id/BackMain_fromSetting"
android:layout_width="36dp"
android:layout_height="74dp"
android:layout_weight="3"
android:src="@drawable/back_button" />
<TextView
android:id="@+id/Setting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="7"
android:padding="8dp"
android:text="設定"
android:textSize="40dp" />
</LinearLayout>
<!-- ID作成のレイアウト-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3"
android:orientation="horizontal"
android:weightSum="2">
<ImageView
android:id="@+id/imageUuid"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="16dp"
android:src="@drawable/createid" />
<TextView
android:id="@+id/creatUUID"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="ID作成"
android:textSize="50dp" />
</LinearLayout>
<!-- セットアップのレイアウト-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3"
android:orientation="horizontal"
android:weightSum="2">
<ImageView
android:id="@+id/imageSetup"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="16dp"
android:src="@drawable/settingsetup" />
<TextView
android:id="@+id/setUp"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="家庭訪問情報"
android:textSize="36dp"
android:textStyle="bold" />
</LinearLayout>
<!-- フォームのURLのレイアウト-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3"
android:orientation="horizontal"
android:weightSum="2">
<ImageView
android:id="@+id/imageFormURL"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="16dp"
android:src="@drawable/form" />
<TextView
android:id="@+id/formURL"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="GoogleformのURL"
android:textSize="28dp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>

View File

@ -1,148 +1,146 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:orientation="vertical"
android:weightSum="20" android:weightSum="20"
tools:context=".MainActivity"> tools:context=".MainActivity">
<Space <Space
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="2" /> android:layout_weight="2"/>
<!-- タイトルのレイアウト-->
<!-- ID作成のレイアウト-->
<LinearLayout <LinearLayout
android:layout_width="400dp" android:layout_width="wrap_content"
android:layout_height="0dp" android:layout_height="0dp"
android:layout_gravity="center" android:layout_weight="3"
android:layout_weight="4" android:weightSum="2"
android:orientation="horizontal" android:orientation="horizontal">
android:weightSum="3">
<ImageView <ImageView
android:id="@+id/imageTitle" android:id="@+id/imageUuid"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/checked_image"
android:layout_weight="1" android:layout_weight="1"
android:src="@drawable/app_icon" /> />
<TextView <TextView
android:id="@+id/title" android:id="@+id/creatUUID"
android:layout_width="99dp" android:layout_width="99dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center" android:layout_gravity="center"
android:layout_weight="2" android:layout_weight="1"
android:gravity="left" android:gravity="left"
android:text="OPLOGY" android:text="ID作成"
android:textSize="60dp" android:textSize="50dp"
android:textStyle="bold" /> />
</LinearLayout> </LinearLayout>
<!-- セットアップのレイアウト-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="3"
android:weightSum="2"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageSetup"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:src="@drawable/checked_image"
android:layout_weight="1"
/>
<TextView
android:id="@+id/setUp"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:text="セットアップ"
android:textSize="40dp"
android:textStyle="bold"
android:layout_weight="1"
android:gravity="left"
android:layout_gravity="center"/>
</LinearLayout>
<Space <Space
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="2" /> android:layout_weight="3"/>
<!-- ルート表示のレイアウト--> <!-- ルート表示のレイアウト-->
<LinearLayout <LinearLayout
android:layout_width="400dp" android:layout_width="400dp"
android:layout_height="0dp" android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3" android:layout_weight="3"
android:orientation="horizontal" android:weightSum="2"
android:weightSum="2"> android:layout_gravity="center"
android:orientation="horizontal">
<ImageView <ImageView
android:id="@+id/imageRoot" android:id="@+id/imageRoot"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/pin"
android:layout_weight="1" android:layout_weight="1"
android:src="@drawable/pin" /> />
<TextView <TextView
android:id="@+id/root" android:id="@+id/root"
android:layout_width="99dp" android:layout_width="99dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="ルート表示" android:text="ルート表示"
android:textSize="40dp" android:textSize="40dp"
android:textStyle="bold" /> android:textStyle="bold"
android:layout_weight="1"
android:gravity="left"
android:layout_gravity="center"/>
</LinearLayout> </LinearLayout>
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5" />
<!-- 提出状況のレイアウト-->
<!-- 提出状況のレイアウト-->
<LinearLayout <LinearLayout
android:layout_width="350dp" android:layout_width="350dp"
android:layout_height="0dp" android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3" android:layout_weight="3"
android:orientation="horizontal" android:layout_gravity="center"
android:weightSum="2"> android:weightSum="2"
android:orientation="horizontal">
<ImageView <ImageView
android:id="@+id/imageSubmission" android:id="@+id/imageSubmission"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/submission"
android:layout_weight="1" android:layout_weight="1"
android:src="@drawable/submission" /> />
<TextView <TextView
android:id="@+id/submission" android:id="@+id/submission"
android:layout_width="99dp" android:layout_width="99dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="left"
android:text="提出状況" android:text="提出状況"
android:textSize="40dp" android:textSize="40dp"
android:textStyle="bold" /> android:textStyle="bold"
</LinearLayout>
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5" />
<!-- 諸々の設定のレイアウト-->
<LinearLayout
android:layout_width="350dp"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="3"
android:orientation="horizontal"
android:weightSum="2">
<ImageView
android:id="@+id/imageSetting"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/setting" />
<TextView
android:id="@+id/setting"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1" android:layout_weight="1"
android:gravity="left" android:gravity="left"
android:text="設定" android:layout_gravity="center"/>
android:textSize="40dp"
android:textStyle="bold" />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>

View File

@ -36,23 +36,17 @@
android:layout_height="0dp" android:layout_height="0dp"
android:layout_weight="6" android:layout_weight="6"
tools:context=".Maps" /> tools:context=".Maps" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="3"
android:gravity="center"
android:orientation="horizontal"
>
<ScrollView <ScrollView
android:id="@+id/scrollable" android:id="@+id/scrollable"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="300dp" android:layout_height="wrap_content"
> android:layout_weight="3">
<LinearLayout <LinearLayout
android:id="@+id/locationsName" android:id="@+id/locationsName"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="wrap_content"
android:orientation="vertical" /> android:orientation="vertical" />
</ScrollView> </ScrollView>
</LinearLayout> </LinearLayout>
</LinearLayout>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".RootSearchActivity">
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -4,6 +4,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal"> android:orientation="horizontal">
<TextView <TextView
android:id="@+id/studentNumberTextView" android:id="@+id/studentNumberTextView"
android:layout_width="0dp" android:layout_width="0dp"
@ -21,10 +22,10 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="3" android:layout_weight="3"
android:background="@android:color/white" android:text="提出状況"
android:textSize="36sp"
android:gravity="center_vertical" android:gravity="center_vertical"
android:paddingStart="8dp" android:paddingStart="8dp"
android:text="提出状況" android:background="@android:color/white"
android:textColor="@android:color/black" android:textColor="@android:color/black" />
android:textSize="36sp" />
</LinearLayout> </LinearLayout>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -9,7 +10,7 @@
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
android:orientation="horizontal" android:orientation="horizontal"
@ -28,15 +29,15 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="4" android:layout_weight="4"
android:hint="提出状況" android:hint="提出状況"
android:textSize="40dp"
android:padding="8dp" android:padding="8dp"
android:textSize="40dp" /> />
</LinearLayout> </LinearLayout>
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView" android:id="@+id/recyclerView"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="match_parent"
android:layout_weight="9" />
android:scrollbars="vertical" />
</LinearLayout> </LinearLayout>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TutorialActivity">
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon> </adaptive-icon>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon> </adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>

View File

@ -3,7 +3,7 @@
<string name="maps_api_key">AIzaSyBqLqPm76UFpwbpU8b3oiH0wbkhosrPWpU</string> <string name="maps_api_key">AIzaSyBqLqPm76UFpwbpU8b3oiH0wbkhosrPWpU</string>
<string name="title_activity_maps">MapsActivity</string> <string name="title_activity_maps">MapsActivity</string>
<string name="setUp">設定</string> <string name="setUp">設定</string>
<string name="reset">データ削除</string> <string name="reset">リセット</string>
<string name="teacherName">担任の名前</string> <string name="teacherName">担任の名前</string>
<string name="startPoint">開始地点</string> <string name="startPoint">開始地点</string>
<string name="startTime">開始時刻</string> <string name="startTime">開始時刻</string>