我是开发Android应用程序和编写java的新手。但是,我只想创建一个简单的应用程序,它将根据当天的时间在TextView上提供不同的输出。
F.ex。如果时间是在06:45和08:45之间,我希望它说“早上好”,等等。
我一直在玩Eclipse并创建了一个简单的WebView应用程序,但我似乎无法找到任何信息来选择我想要在特定时间显示哪个TextView或显示不同的布局。
你有什么提示吗? 这是我现在在src中的.java文件。
package com.wao.texttime;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class TextTime extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv1 = (TextView) findViewById(R.id.TextView01);
tv1.setText("Good Morning");
}
}