選擇困難症的福音——團隊Scrum衝刺階段-Day5(補發 那天csshow)
阿新 • • 發佈:2018-12-16
今日進展
- 編寫提問部分
- 如何將不同的問題選項連線到不同的下一個問題
- 如何保證問題的連結不會弄丟
- 登陸註冊介面
- 完成密碼可見與不可見的更改
- ui介面太難看了!!!改!!
- 有一定想更改按鈕樣式的想法
- 還有點想增加背景音樂
- 資料庫更新
- 參考資料庫教材P334頁程式碼編寫GetDBConnection類,實現與資料庫的連線
login.setOnClickListener(new OnClickListener() { public void onClick(View v) { Intent intent1; String name = username.getText().toString(); String pass = password.getText().toString(); Log.i("TAG", "username is" + name + "userpass is" + pass); UserService uService = new UserService(LoginActivity.this); boolean flag = uService.login(name, pass); if (flag) { Log.i("TAG", "Log right"); Toast.makeText(LoginActivity.this, "Log right", Toast.LENGTH_LONG).show(); AlertDialog.Builder dialog = new android.app.AlertDialog.Builder(LoginActivity.this); dialog.setTitle("Attention"); dialog.setMessage("Do you want to do the following test ?"); dialog.setPositiveButton("OK",new android.content.DialogInterface.OnClickListener(){ public void onClick(android.content.DialogInterface dialog,int which){ Intent intent1 = new Intent(LoginActivity.this, AAvtivity.class); startActivity(intent1); } }); dialog.setNegativeButton("Cancel",new android.content.DialogInterface.OnClickListener(){ public void onClick(android.content.DialogInterface dialog,int which){ Intent intent = new Intent(LoginActivity.this,YizhiActivity.class); startActivity(intent); } }); dialog.show(); } else { Log.i("TAG", "Log false"); Toast.makeText(LoginActivity.this, "Log false", Toast.LENGTH_LONG).show(); } } });
問題困難
改按鈕樣式的想法
增加背景音樂
明日任務
嚴域俊:連線不同選項對應的小遊戲視窗
吳恆佚:連線不同選項對應的小遊戲視窗,找回R檔案
曾程:部落格、todolist
劉辰:登陸介面的動畫
鄧煜坤:資料庫更新
大家一起思考:更改按鈕樣式的想法增加背景音樂
今日貢獻量
嚴域俊 | 吳恆佚 | 曾程 | 劉辰 | 鄧煜坤 |
---|---|---|---|---|
3 | 3.5 | 2.5 | 3.2 | 2.6 |
站立式會議
DYK同學在為我們講解他對這個app應該如何更改的想法