datePicker #30
|
@ -5,9 +5,8 @@
|
|||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleJvm" value="JDK" />
|
||||
<option name="gradleJvm" value="Embedded JDK" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
|
|
|
@ -42,7 +42,7 @@ public class CreateRoot {
|
|||
private final AppDatabase db;
|
||||
private int arraySize;
|
||||
boolean Duplicates=true;
|
||||
boolean secondDuplicates=true;
|
||||
boolean secondDuplicates=false;
|
||||
|
||||
private Context context;
|
||||
|
||||
|
@ -65,7 +65,7 @@ public class CreateRoot {
|
|||
|
||||
}
|
||||
|
||||
public Boolean receiveData(List<MyDataClass> myDataList) {
|
||||
public Boolean receiveData(List<MyDataClass> myDataList,Context context) {
|
||||
|
||||
//myDataListの要素data第一希望日と第二希望日に以下を追加する
|
||||
//・保護者の希望時間帯の長さ
|
||||
|
@ -112,6 +112,8 @@ public class CreateRoot {
|
|||
if (!Duplicates) {
|
||||
sortSchedule(myDataList);
|
||||
|
||||
geocodeAddress(myDataList,context);
|
||||
outPutLogSchedule(myDataList);
|
||||
} else {
|
||||
//第二希望日で同じ処理を行う
|
||||
Log.d("CreateRoot", "第二希望");
|
||||
|
@ -120,20 +122,16 @@ public class CreateRoot {
|
|||
secondDuplicates = secondCreateSchedule(myDataList, intervalArray);
|
||||
if (!secondDuplicates) {
|
||||
sortSchedule(myDataList);
|
||||
|
||||
geocodeAddress(myDataList,context);
|
||||
outPutLogSchedule(myDataList);
|
||||
} else {
|
||||
Log.d("CreateRoot", "重複によるエラー");
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
if (!secondDuplicates) {
|
||||
geocodeAddress(myDataList);
|
||||
outPutLogSchedule(myDataList);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return !secondDuplicates;
|
||||
}
|
||||
|
||||
|
||||
|
@ -332,9 +330,10 @@ public class CreateRoot {
|
|||
}
|
||||
|
||||
for (int i = 0; i < myDataList.size(); i++) {
|
||||
if (myDataList.get(i).getSchedule() == 0) ;
|
||||
if (myDataList.get(i).getSchedule() == 0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -353,6 +352,7 @@ public class CreateRoot {
|
|||
for (int i = 0; i < myDataList.size(); i++) {
|
||||
if (myDataList.get(i).getSchedule() == 0) {
|
||||
return true;
|
||||
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
@ -362,7 +362,7 @@ public class CreateRoot {
|
|||
|
||||
if (intervalArray[x][j][0] >= Integer.parseInt(myDataList.get(i).getParentStartTimeString()) && intervalArray[x][j + 1][0] <= Integer.parseInt(myDataList.get(i).getParentEndTimeString()) && intervalArray[x][j][1] == 0) {
|
||||
intervalArray[x][j][1] += 1;//割り当て済みを表す
|
||||
myDataList.get(i).setSchedule(Integer.parseInt(desiredDate.substring(4, 8) + String.valueOf(intervalArray[x][j][0])));
|
||||
myDataList.get(i).setSchedule(Integer.parseInt(desiredDate.substring(4, 8) + intervalArray[x][j][0]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -374,7 +374,7 @@ public class CreateRoot {
|
|||
|
||||
|
||||
|
||||
private void geocodeAddress(List<MyDataClass> myDataList) {
|
||||
private void geocodeAddress(List<MyDataClass> myDataList,Context context) {
|
||||
try {
|
||||
Geocoder geocoder = new Geocoder(context, Locale.getDefault());
|
||||
for(int i=0;i<myDataList.size();i++) {
|
||||
|
|
|
@ -40,9 +40,6 @@ public class FirestoreReception {
|
|||
for (QueryDocumentSnapshot document : task.getResult()) {
|
||||
Map<String, Object> data = document.getData();
|
||||
|
||||
//CreateRootクラスのインスタンスを生成、dataを渡す
|
||||
// GeoCoder geoCoder = new GeoCoder();
|
||||
// geoCoder.processData(data, context);
|
||||
|
||||
// ドキュメントのデータをMyDataClassのインスタンスにマッピング
|
||||
MyDataClass myData = new MyDataClass(
|
||||
|
|
|
@ -48,7 +48,8 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
private FirestoreReception_classIdDatabase firestoreReception_classIdDatabase;
|
||||
|
||||
//取得するためのクラスID
|
||||
private int classId=100000;
|
||||
private int classId;
|
||||
private String address;
|
||||
|
||||
|
||||
@Override
|
||||
|
@ -83,33 +84,52 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
// firestoreの受信関連
|
||||
db = FirebaseFirestore.getInstance();
|
||||
firestoreReception = new FirestoreReception();
|
||||
Log.d("MainActivity","geocodeAddress");
|
||||
|
||||
|
||||
//TODO:classIdの初期値を取得
|
||||
ExecutorService executor = Executors.newSingleThreadExecutor();
|
||||
executor.execute(() -> {
|
||||
try {
|
||||
AppDatabase db = Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "SetUpTable")
|
||||
.build();
|
||||
SetUpTableDao setUpTableDao = db.setUpTableDao();
|
||||
classId = setUpTableDao.getClassId();
|
||||
firestoreReception.getDocumentsByClassId(classId);
|
||||
} catch (Exception e) {
|
||||
//無視して続行
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
// クリック処理
|
||||
|
||||
// クリック処理
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
// ID作成のクリック処理
|
||||
if(view == creatUUID){
|
||||
if (view == creatUUID) {
|
||||
imageUuid.setImageResource(R.drawable.ischecked_uuid);
|
||||
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
|
||||
}
|
||||
if(view == imageUuid){
|
||||
if (view == imageUuid) {
|
||||
imageUuid.setImageResource(R.drawable.ischecked_uuid);
|
||||
showUUIDYesNoDialog();//UUIDを表示するかのダイアログ
|
||||
}
|
||||
// セットアップのクリック処理
|
||||
if(view == setUp){
|
||||
if (view == setUp) {
|
||||
imageSetup.setImageResource(R.drawable.ischecked_uuid);
|
||||
Intent toSetup = new Intent(MainActivity.this,SetUpActivity.class);
|
||||
Intent toSetup = new Intent(MainActivity.this, SetUpActivity.class);
|
||||
toSetup.putExtra("classId", classId);
|
||||
startActivity(toSetup);
|
||||
finish(); // 画面遷移後元の状態に戻す
|
||||
}
|
||||
if (view == imageSetup){
|
||||
if (view == imageSetup) {
|
||||
imageSetup.setImageResource(R.drawable.ischecked_uuid);
|
||||
Intent toSetup = new Intent(MainActivity.this,SetUpActivity.class);
|
||||
Intent toSetup = new Intent(MainActivity.this, SetUpActivity.class);
|
||||
startActivity(toSetup);
|
||||
finish(); // 画面遷移後元の状態に戻す
|
||||
}
|
||||
|
@ -120,12 +140,12 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
fetchDataAndCreateRoute();
|
||||
|
||||
}
|
||||
if(view == imageRoot){
|
||||
if (view == imageRoot) {
|
||||
imageRoot.setImageResource(R.drawable.pin);
|
||||
fetchDataAndCreateRoute();
|
||||
}
|
||||
// 提出状況のクリック処理
|
||||
if(view == submission){
|
||||
if (view == submission) {
|
||||
ArrayList<SubmissionStudent> submissionStudents = getSubmissionStudents();
|
||||
Intent toSubmission = new Intent(MainActivity.this, SubmissionActivity.class);
|
||||
toSubmission.putParcelableArrayListExtra("submissionStudents", submissionStudents);
|
||||
|
@ -138,10 +158,11 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
startActivity(toSubmission);
|
||||
}
|
||||
}
|
||||
|
||||
//UUIDを表示するかのダイアログ
|
||||
private void showUUIDYesNoDialog() {
|
||||
firestoreReception_classIdDatabase = new FirestoreReception_classIdDatabase();
|
||||
List<String> classIdList = firestoreReception_classIdDatabase.getAllDocumentsFromClassIdDatabase();
|
||||
List<Integer> classIdList = firestoreReception_classIdDatabase.getAllDocumentsFromClassIdDatabase();
|
||||
|
||||
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
||||
|
@ -207,7 +228,7 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
}
|
||||
Log.d("MainActivity", "myDataList" + myDataList.size());
|
||||
CreateRoot createRoot = new CreateRoot(MainActivity.this);
|
||||
Boolean notDuplicates = createRoot.receiveData(myDataList);
|
||||
Boolean notDuplicates = createRoot.receiveData(myDataList,getApplicationContext());
|
||||
latch.countDown();
|
||||
|
||||
if (notDuplicates) {
|
||||
|
@ -270,12 +291,6 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
.setTitle("警告")
|
||||
.setMessage(message.toString())
|
||||
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
latch.countDown();
|
||||
}
|
||||
})
|
||||
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
dialog.dismiss();
|
||||
|
@ -334,19 +349,4 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
alertDialog.dismiss();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onResume(){
|
||||
super.onResume();
|
||||
//roomからclassIdを取得
|
||||
ExecutorService executor = Executors.newSingleThreadExecutor();
|
||||
executor.execute(() -> {
|
||||
AppDatabase db = Room.databaseBuilder(getApplicationContext(), AppDatabase.class, "SetUpTable").build();
|
||||
SetUpTableDao setUpTableDao = db.setUpTableDao();
|
||||
classId = setUpTableDao.getClassId();
|
||||
});
|
||||
if (classId != 100000 ) {
|
||||
firestoreReception.getDocumentsByClassId(classId);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user