2
我在我的應用程序中有一個計時器,我想重新啓動計時器,如果方向在所有4個方向更改。我試圖通過添加Onconfigurationchanged()方法來實現,但它並沒有爲我調用和工作。重新啓動應用程序(Oncreate)在方向更改
MainActivity.class
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.i("tag","oncreate changed");
setContentView(R.layout.activity_main);
timer = (AppCompatEditText)findViewById(R.id.editText);
totalHoursText = (TextView)findViewById(R.id.totalhoursText);
startButton = (Button)findViewById(R.id.button);
stopButton = (Button)findViewById(R.id.button1);
totalHoursText.setVisibility(View.INVISIBLE);
startButton.setOnClickListener(this);
stopButton.setOnClickListener(this);
handler = new Handler();
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
Log.i("tag", "orientation changed");
int orientation = newConfig.orientation;
switch (orientation) {
case Configuration.ORIENTATION_LANDSCAPE:
Log.i("tag", "orientation changed landscape");
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
}
}
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.button :
Time time = new Time();
time.setToNow();
flag=true;
startTime = time.toMillis(false);
handler.postDelayed(updateTimerThread,0);
totalHoursText.setVisibility(View.INVISIBLE);
break;
case R.id.button1:
timer.setText("00:00");
flag=false ;
handler.removeCallbacksAndMessages(updateTimerThread);
break;
}
}
private Runnable updateTimerThread = new Runnable() {
String str;
public void run() {
if(flag) {
Time time = new Time();
time.setToNow();
timeInMilliseconds = time.toMillis(false) - startTime;
updatedTime = timeSwapBuff + timeInMilliseconds;
int secs = (int) (updatedTime/1000);
int mins = secs/60;
secs = secs % 60;
int milliseconds = (int) (updatedTime % 1000);
int sec = (int) (updatedTime/1000) % 60;
int min = (int) ((updatedTime/(1000 * 60)) % 60);
int hr = (int) ((updatedTime/(1000 * 60 * 60)) % 24);
str = "" + String.format("%02d", hr) + ":"
+ String.format("%02d", min) + ":"
+ String.format("%02d", sec);
timer.setText("" + String.format("%02d", hr) + ":"
+ String.format("%02d", min) + ":"
+ String.format("%02d", sec));
handler.postDelayed(this, 0);
}
else{
totalHoursText.setVisibility(View.VISIBLE);
totalHoursText.setText(str);
}
}
};
請幫我建議或代碼段。
你好,謝謝你的答案,但增加了清單隻調用Oncreate的方向。 –
@ young_08我只是編輯我的答案。 –
現在它的工作完美。感謝幫助 。請注意! –