谁能告诉我如何在不使用时间选择器的情况下在 android 的编辑文本框中设置当前时间。
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));
请提出建议。
感谢您宝贵的时间!..