-2

我是 android 新手,我正在尝试学习一些新东西。

当时间改变时,我想改变我textview的。例如,如果在上午 12 点到下午 12 点之间,则应显示“早安”,否则应显示“晚安”

我试过的代码如下..

SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
String formattedDate = df.format(c.getTime());

Toast.makeText(this, formattedDate, Toast.LENGTH_SHORT).show();

if(formattedDate.equals("00:00:00")&&formattedDate.equals("12:00:00")){
    textView.setText("good morning");
}else{
    textView.setText("good Evening");
}

这段代码的问题是,如果您在上午 12 点或下午 12 点打开此应用程序,它将显示文本“早上好”,如果不是,则显示晚上好。我想要的是文本应该在上午 12 点到中午 12 点,其余时间应该显示晚安。

如果您能提供帮助,请提前致谢.. :)

4

3 回答 3

1
    Calendar c = Calendar.getInstance();
    SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss a");
    String formattedDate = df.format(c.getTime());

    if (formattedDate.contains("AM")) {
        textView.setText("Good Morning");
    } else {
        textView.setText("Good Evening");
    }
于 2017-02-02T11:25:45.573 回答
0
Calendar calendar = Calendar.getInstance();

SimpleDateFormat sdf = new SimpleDateFormat("HH");

int temp = Integer.parseInt(sdf.format(calendar.getTimeInMillis()));

if(temp > 12)
{
    System.out.println("Good Evening");
}
else
{
    System.out.println("Good Morning");
}
于 2017-02-02T12:10:22.440 回答
0

检查下面的代码

public static String Convert24to12(String time)
{
String convertedTime ="";
try {
    SimpleDateFormat displayFormat = new SimpleDateFormat("hh:mm a");
    SimpleDateFormat parseFormat = new SimpleDateFormat("HH:mm:ss");
    Date date = parseFormat.parse(time);        
    convertedTime=displayFormat.format(date);
    System.out.println("convertedTime : "+convertedTime);
} catch (final ParseException e) {
    e.printStackTrace();
}
return convertedTime;
//Output will be 10:23 PM
}

在这里你只需检查这个条件

if(Convert24to12(formattedDate).contains("AM")){
   textView.setText("good morning");
}else{
   textView.setText("good Evening");
}
于 2017-02-02T11:03:36.393 回答