Android使用SimpleDateFormat实现日期的减法获取天数差 (学习笔记 (五))

Android使用SimpleDateFormat实现日期的减法获取天数差 (学习笔记 (五))

效果图

在这里插入图片描述

第一步,修改activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <Button
        android:layout_width="match_parent"
        android:id="@+id/btn"
        android:text="日期差"
        android:layout_height="wrap_content" />
    <Button
        android:id="@+id/btn1"
        android:layout_width="match_parent"
        android:text="被减日期加1天"
        android:layout_height="wrap_content" />
    <Button
        android:id="@+id/bt2"
        android:layout_width="match_parent"
        android:text="被减日期加30天"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="100dp"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</LinearLayout>

第二步,修改MainActivity.java

package com.example.myapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class MainActivity extends AppCompatActivity {
    TextView tv;
    Button bt,bt1,bt2;
    SimpleDateFormat simpleDateFormat;
    String d2;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv = findViewById(R.id.tv);
        bt = findViewById(R.id.btn);
        bt1 = findViewById(R.id.btn1);
        bt2 = findViewById(R.id.bt2);
        bt1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
                d2 = "2019-10-21";
                String srt =  simpleDateFormat.format(new Date(System.currentTimeMillis()));
                try {
                    long m = simpleDateFormat.parse(srt).getTime() - simpleDateFormat.parse(d2).getTime();
                    long tianshu = m/(1000*60*60*24);
                    tv.setText("相差的天数:"+srt+"天 -"+d2+"="+String.valueOf(tianshu)+"天数");
                } catch (ParseException e) {
                    e.printStackTrace();
                }
            }
        });
        bt2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
                d2 = "2019-11-20";
                String srt =  simpleDateFormat.format(new Date(System.currentTimeMillis()));
                try {
                    long m = simpleDateFormat.parse(srt).getTime() - simpleDateFormat.parse(d2).getTime();
                    long tianshu = m/(1000*60*60*24);
                    tv.setText("相差的天数:"+srt+"天 -"+d2+"="+String.valueOf(tianshu)+"天数");
                } catch (ParseException e) {
                    e.printStackTrace();
                }
            }
        });
        bt.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
                String d1 = "2019-10-20";
             String srt =  simpleDateFormat.format(new Date(System.currentTimeMillis()));
                try {
                    long m = simpleDateFormat.parse(srt).getTime() - simpleDateFormat.parse(d1).getTime();
                    long tianshu = m/(1000*60*60*24);
                    tv.setText("相差的天数:"+srt+"天 -"+d1+"="+String.valueOf(tianshu)+"天数");
                } catch (ParseException e) {
                    e.printStackTrace();
                }

            }
        });
    }
}

好啦,本篇要讲的就到这里了。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

雪の星空朝酱

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值