Android实现房贷计算器

本文实例为大家分享了Android实现房贷计算器的具体代码,供大家参考,具体内容如下

fangdai(activity)

package com.example.myapplication_one;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.RadioGroup;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;

public class fangdai extends AppCompatActivity {
    //声明用到的所有控件
    Spinner spinner1;
    Spinner spinner2;
    EditText row1edit;
    EditText row2edit;
    Button total;
    RadioGroup radioGroup;
    CheckBox checkBox1;
    CheckBox checkBox2;
    EditText row4edit;
    EditText row5edit;
    Button detail;
    TextView totalcal;
    TextView alldetail;
    private void initSpinner(){
        //初始化控件
        spinner1= (Spinner) findViewById(R.id.sp1);
        spinner2= (Spinner) findViewById(R.id.sp2);
        //建立数据源
        String[] years=getResources().getStringArray(R.array.years);
        String[] baserates=getResources().getStringArray(R.array.baserate);
        //声明一个下拉列表的数组适配器并绑定数据源
        ArrayAdapter yearAdapter=new ArrayAdapter(this,R.layout.support_simple_spinner_dropdown_item,years);
        ArrayAdapter baserateAdapter=new ArrayAdapter(this,R.layout.support_simple_spinner_dropdown_item,baserates);
        //绑定Adapter到控件
        spinner1.setAdapter(yearAdapter);
        spinner2.setAdapter(baserateAdapter);
        //设置默认选择第一项
        spinner1.setSelection(0);
        spinner2.setSelection(0);
        //设置标题
        spinner1.setPrompt("请选择贷款年限");
        spinner2.setPrompt("请选择基准利率");
    }

    //声明下列函数中要用到的变量
    double intotal,backtotal,extra,pertime;//贷款总额,还款总额,利息,每月还款总额
    int month;//月份
    String buytotal;//购房总额
    String percent;//贷款百分比
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.fangdai);
        //初始化控件
        initSpinner();
        row1edit= (EditText) findViewById(R.id.row1edit);
        row2edit= (EditText) findViewById(R.id.row2edit);
        total= (Button) findViewById(R.id.totalcal);
        radioGroup= (RadioGroup) findViewById(R.id.radiogroup);
        checkBox1= (CheckBox) findViewById(R.id.check1);
        checkBox2= (CheckBox) findViewById(R.id.check2);
        totalcal= (TextView) findViewById(R.id.showtotal);
        detail= (Button) findViewById(R.id.detail);
        alldetail= (TextView) findViewById(R.id.alldetail);
        row4edit= (EditText) findViewById(R.id.row4label);
        row5edit= (EditText) findViewById(R.id.row5label);

        //给第一个计算按钮添加点击监听
        total.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                buytotal=row1edit.getText().toString();
                percent=row2edit.getText().toString();
                if(TextUtils.isEmpty(buytotal)||TextUtils.isEmpty(percent))//判断前两个输入框是否非空
                {
                    Toast.makeText(fangdai.this,"购房总价和按揭部分信息填写完整",Toast.LENGTH_LONG).show();
                }else if(fangdaitext.isNum(buytotal)==false||fangdaitext.isNum(percent)==false){//判断输入的是否是数字
                    Toast.makeText(fangdai.this,"包含不合法的输入信息",Toast.LENGTH_LONG).show();
                } else if(Double.parseDouble(percent)>100){//判断百分比部分输入是否大于100%
                    Toast.makeText(fangdai.this,"按揭部分不能超过100%",Toast.LENGTH_LONG).show();
                } else if(fangdaitext.isNum(buytotal)&&fangdaitext.isNum(percent))
                {
                    intotal=(Double.parseDouble(buytotal)*Double.parseDouble(percent)*0.01);
                    totalcal.setText("您的贷款总额为"+String.format("%.2f",intotal)+"万元");
                }
            }
        });

        detail.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //first,second为商贷和公积金贷所填数值
                String first=row4edit.getText().toString();
                String second=row5edit.getText().toString();
                //firstrate和secondrate为商贷和公积金的年利率
                double firstrate=Double.parseDouble(spinner2.getSelectedItem().toString().substring(20,24))*0.01;
                double secondrate=Double.parseDouble(spinner2.getSelectedItem().toString().substring(31,35))*0.01;
                //获取下拉列表的年份求得月份
                String year=spinner1.getSelectedItem().toString();
                month=Integer.parseInt(year.substring(0,year.length()-1))*12;
                //两种贷款的月利率
                double firstmonthrate=firstrate/12;
                double secondmonthrate=secondrate/12;
                if(totalcal.getText().toString().equals("其中贷款部分为:***万")){//判断是否计算过贷款总额
                    Toast.makeText(fangdai.this,"请先计算贷款总额",Toast.LENGTH_LONG).show();
                }else if(row1edit.getText().toString().equals(buytotal)==false||row2edit.getText().toString().equals(percent)==false){//监听贷款总额和按揭部分数值是否发生变化
                    Toast.makeText(fangdai.this,"检查到您的购房总价或按揭部分数据更改,请重新计算贷款总额",Toast.LENGTH_LONG).show();
                } else if(checkBox1.isChecked()==false&&checkBox2.isChecked()==false)//监听勾选的多选框
                {
                    Toast.makeText(fangdai.this,"请勾选贷款种类",Toast.LENGTH_LONG).show();
                }else if(checkBox1.isChecked()&&checkBox2.isChecked()==false){
                    //等额本息贷款算法
                    if(radioGroup.getCheckedRadioButtonId()==R.id.btn1){
                        pertime=intotal*firstmonthrate*Math.pow((1+firstmonthrate),month)/(Math.pow(1+firstmonthrate,month)-1);
                        backtotal=pertime*month;
                        extra=backtotal-intotal;
                        alldetail.setText("您的贷款总额为"+String.format("%.2f",intotal)+"万元\n还款总额为"+String.format("%.2f",backtotal)+"万元\n其中利息总额为"+String.format("%.2f",extra)+"万元\n还款总时间为"+month+"月\n每月还款金额为"+String.format("%.2f",pertime*10000)+"元");
                    }else{//等额本金贷款算法
                        double[] array=new double[month];
                        double sum=0;
                        for(int i=0;i oldlength) {
                    char newchar = charSequence.charAt(i);
                    if ((newchar < '0' && newchar > '9') && newchar != '.') {
                        if (i != length - 1)
                            row1edit.setText(charSequence.subSequence(0, i).toString() + charSequence.subSequence(i + 1, length).toString());
                        else
                            row1edit.setText(charSequence.subSequence(0, length - 1));
                    }
                }
                oldlength=length;
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });

        row2edit.addTextChangedListener(new TextWatcher() {
            int oldlength=0;
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

            }

            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                int length=charSequence.length();
                if(length>oldlength) {
                    char newchar = charSequence.charAt(i);
                    if ((newchar < '0' && newchar > '9') && newchar != '.') {
                        if (i != length - 1)
                            row2edit.setText(charSequence.subSequence(0, i).toString() + charSequence.subSequence(i + 1, length).toString());
                        else
                            row2edit.setText(charSequence.subSequence(0, length - 1));
                    }
                }
                oldlength=length;
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });

        row4edit.addTextChangedListener(new TextWatcher() {
            int oldlength=0;
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

            }

            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                int length=charSequence.length();
                if(length>oldlength) {
                    char newchar = charSequence.charAt(i);
                    if ((newchar < '0' && newchar > '9') && newchar != '.') {
                        if (i != length - 1)
                            row4edit.setText(charSequence.subSequence(0, i).toString() + charSequence.subSequence(i + 1, length).toString());
                        else
                            row4edit.setText(charSequence.subSequence(0, length - 1));
                    }
                }
                oldlength=length;
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });

        row5edit.addTextChangedListener(new TextWatcher() {
            int oldlength=0;
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

            }

            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                int length=charSequence.length();
                if(length>oldlength) {
                    char newchar = charSequence.charAt(i);
                    if ((newchar < '0' && newchar > '9') && newchar != '.') {
                        if (i != length - 1)
                            row5edit.setText(charSequence.subSequence(0, i).toString() + charSequence.subSequence(i + 1, length).toString());
                        else
                            row5edit.setText(charSequence.subSequence(0, length - 1));
                    }
                }
                oldlength=length;
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });
    }

}

fangdaitext(activity)

package com.example.myapplication_one;
public class fangdaitext {
    public static boolean isNum(String string){
        int flag=0;
        if(string.charAt(0)=='0'&&string.charAt(1)!='.')
            return false;
        if(string.charAt(0)=='.')
            return false;
        for(int i=0;i'9')&&string.charAt(i)!='.')
                return false;
            else if(string.charAt(i)=='.')
            {
                flag++;
                if(flag>1)
                    return false;
            }
        }
        return true;
    }
}

fangdai.xml



    
        
            
                
                

                
            
            
                
                

                
            

            

edittext_style.xml



    
        
            
            
        
    
    
        
            
            
        
    

btn_style.xml



    
        
            
            
            
        
    
    
        
            
            
            
        
    

dimens.xml


    
    16dp
    16dp

Android实现房贷计算器_第1张图片

Android实现房贷计算器_第2张图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(Android实现房贷计算器)