Time-picker を使用せずに Android の edittext ボックスに現在の時刻を設定する方法を教えてください。
edt_time=(EditText) findViewById(R.id.editText_time);
Time t = new Time();
java.text.Time tf = android.text.format.Time.getCurrentTimezone(getApplicationContext());
edt_time.setText(tf.format(t));
提案してください。
貴重なお時間をありがとうございました!...