我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android实现房贷计算器

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

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<String> yearAdapter=new ArrayAdapter<String>(this,R.layout.support_simple_spinner_dropdown_item,years);
        ArrayAdapter<String> baserateAdapter=new ArrayAdapter<String>(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<month;i++)
                        {
                            array[i]=intotal/month+(intotal-sum)*firstmonthrate;
                            sum+=array[i];
                        }
                        String text="";
                        for(int i=0;i<month;i++){
                            text+="\n第"+(i+1)+"个月应还金额为:"+String.format("%.2f",array[i]*10000);
                        }
                        backtotal=sum;
                        extra=backtotal-intotal;
                        alldetail.setText("您的贷款总额为"+String.format("%.2f",intotal)+"万元\n还款总额为"+String.format("%.2f",backtotal)+"万元\n其中利息总额为"+String.format("%.2f",extra)+"万元\n还款总时间为"+month+"月\n每月还款金额如下:"+text);
                    }

                }else if(checkBox1.isChecked()==false&&checkBox2.isChecked()){
                    if(radioGroup.getCheckedRadioButtonId()==R.id.btn1){
                        pertime=intotal*secondmonthrate*Math.pow((1+secondmonthrate),month)/(Math.pow(1+secondmonthrate,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<month;i++)
                        {
                            array[i]=intotal/month+(intotal-sum)*secondmonthrate;
                            sum+=array[i];
                        }
                        String text="";
                        for(int i=0;i<month;i++){
                            text+="\n第"+(i+1)+"个月应还金额为:"+String.format("%.2f",array[i]*10000)+"元";
                        }
                        backtotal=sum;
                        extra=backtotal-intotal;
                        alldetail.setText("您的贷款总额为"+String.format("%.2f",intotal)+"万元\n还款总额为"+String.format("%.2f",backtotal)+"万元\n其中利息总额为"+String.format("%.2f",extra)+"万元\n还款总时间为"+month+"月\n每月还款金额如下:"+text);
                    }
                }else if(checkBox1.isChecked()&&checkBox2.isChecked()){
                    if(radioGroup.getCheckedRadioButtonId()==R.id.btn1){
                        if(TextUtils.isEmpty(first)||TextUtils.isEmpty(second)){
                            Toast.makeText(fangdai.this,"请将空信息填写完整",Toast.LENGTH_LONG).show();
                        }else if(fangdaitext.isNum(first)==false||fangdaitext.isNum(second)==false){
                            Toast.makeText(fangdai.this,"包含不合法的输入信息",Toast.LENGTH_LONG).show();
                        }else if(Double.parseDouble(first)+Double.parseDouble(second)!=Double.parseDouble(String.format("%.2f",intotal))){
                            Toast.makeText(fangdai.this,"填写的两项贷款总额不等于初始贷款额度,请重新填写",Toast.LENGTH_LONG).show();
                        }else{
                            double p1=Double.parseDouble(first);
                            double p2=Double.parseDouble(second);
                            double pertime1=p1*firstmonthrate*Math.pow((1+firstmonthrate),month)/(Math.pow(1+firstmonthrate,month)-1);
                            double pertime2=p2*secondmonthrate*Math.pow((1+secondmonthrate),month)/(Math.pow(1+secondmonthrate,month)-1);
                            pertime=pertime1+pertime2;
                            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{
                        if(first.equals("请输入商业贷款总额(单位万)")||second.equals("请输入公积金贷款总额(单位万)")){
                            Toast.makeText(fangdai.this,"请将空信息填写完整",Toast.LENGTH_LONG).show();
                        }else if(fangdaitext.isNum(first)==false||fangdaitext.isNum(second)==false){
                            Toast.makeText(fangdai.this,"包含不合法的输入信息",Toast.LENGTH_LONG).show();
                        }else if(Double.parseDouble(first)+Double.parseDouble(second)!=Double.parseDouble(String.format("%.2f",intotal))){
                            Toast.makeText(fangdai.this,"填写的两项贷款总额不等于初始贷款额度,请重新填写",Toast.LENGTH_LONG).show();
                        }else{
                            double p1=Double.parseDouble(first);
                            double p2=Double.parseDouble(second);
                            double[] array1=new double[month];
                            double[] array2=new double[month];
                            double sum1=0,sum2=0;
                            for(int i=0;i<month;i++)
                            {
                                array1[i]=p1/month+(p1-sum1)*firstmonthrate;
                                array2[i]=p2/month+(p2-sum2)*secondmonthrate;
                                Toast.makeText(fangdai.this,array1[i]+" "+array2[i],Toast.LENGTH_LONG);
                                sum1+=array1[i];
                                sum2+=array2[i];
                            }
                            String text="";
                            for(int i=0;i<month;i++){
                                text+="\n第"+(i+1)+"个月应还金额为:"+String.format("%.2f",(array1[i]+array2[i])*10000)+"元";
                            }
                            backtotal=sum1+sum2;
                            extra=backtotal-intotal;
                            alldetail.setText("您的贷款总额为"+String.format("%.2f",intotal)+"万元\n还款总额为"+String.format("%.2f",backtotal)+"万元\n其中利息总额为"+String.format("%.2f",extra)+"万元\n还款总时间为"+month+"月\n每月还款金额如下:"+text);
                        }
                    }
                }
            }
        });

        row1edit.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)
                            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<string.length();i++)
        {
            if((string.charAt(i)<'0'||string.charAt(i)>'9')&&string.charAt(i)!='.')
                return false;
            else if(string.charAt(i)=='.')
            {
                flag++;
                if(flag>1)
                    return false;
            }
        }
        return true;
    }
}

fangdai.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="16dp"
    android:focusableInTouchMode="true"
    android:focusable="true"
    tools:context="com.example.myapplication_one.fangdai">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/relativeLayout1">
                <TextView
                    android:id="@+id/row1label"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="购房总价:"
                    android:layout_centerVertical="true"
                    android:textSize="18sp"
                    />
                <EditText
                    android:id="@+id/row1edit"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:hint="请输入购房总价(单位万)"
                    android:singleLine="true"
                    android:textSize="16dp"
                    android:background="@drawable/edittext_style"
                    android:padding="5dp"
                    android:gravity="right"
                    android:layout_toRightOf="@+id/row1label"
                    android:layout_toLeftOf="@+id/row1endlabel"
                    android:inputType="numberDecimal"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="万"
                    android:textSize="18sp"
                    android:layout_marginLeft="10dp"
                    android:layout_centerVertical="true"
                    android:layout_alignParentEnd="true"
                    android:id="@+id/row1endlabel"
                    android:layout_alignParentRight="true" />
            </RelativeLayout>
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/relativeLayout2"
                android:layout_below="@+id/relativeLayout1"
                android:layout_marginTop="20dp">
                <TextView
                    android:id="@+id/row2label"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="按揭部分:"
                    android:layout_centerVertical="true"
                    android:textSize="18sp"
                    />
                <EditText
                    android:id="@+id/row2edit"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:hint="请输入按揭百分比"
                    android:singleLine="true"
                    android:textSize="16dp"
                    android:background="@drawable/edittext_style"
                    android:padding="5dp"
                    android:gravity="right"
                    android:layout_toRightOf="@+id/row2label"
                    android:layout_toLeftOf="@+id/row2endlabel"
                    android:inputType="numberDecimal"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text=" %"
                    android:textSize="18sp"
                    android:layout_marginLeft="10dp"
                    android:layout_centerVertical="true"
                    android:layout_alignParentEnd="true"
                    android:id="@+id/row2endlabel"
                    android:layout_alignParentRight="true" />
            </RelativeLayout>

            <Button
                android:id="@+id/totalcal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/relativeLayout2"
                android:layout_marginTop="15dp"
                android:background="@drawable/btn_style"
                android:text="计算贷款总额" />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="其中贷款部分为:***万"
                android:layout_below="@+id/totalcal"
                android:layout_marginTop="10dp"
                android:textSize="16sp"
                android:id="@+id/showtotal"/>
            <RelativeLayout
                android:id="@+id/relativeLayout3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/showtotal"
                android:layout_marginTop="10dp">
                <TextView
                    android:id="@+id/row3label"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="还款方式:"
                    android:textSize="16sp"
                    android:layout_centerVertical="true"/>
                <RadioGroup
                    android:id="@+id/radiogroup"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_toRightOf="@+id/row3label"
                    android:orientation="horizontal">
                    <RadioButton
                        android:id="@+id/btn1"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="等额本息"
                        android:checked="true"/>
                    <RadioButton
                        android:id="@+id/btn2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="等额本金"
                        android:layout_marginLeft="10dp"/>
                </RadioGroup>
            </RelativeLayout>
            <RelativeLayout
                android:id="@+id/relativeLayout4"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/relativeLayout3">
                <CheckBox
                    android:id="@+id/check1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="商贷:    "/>
                <EditText
                    android:id="@+id/row4label"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:hint="请输入商业贷款总额(单位万)"
                    android:singleLine="true"
                    android:textSize="16dp"
                    android:background="@drawable/edittext_style"
                    android:padding="5dp"
                    android:gravity="right"
                    android:layout_toRightOf="@+id/check1"
                    android:layout_toLeftOf="@+id/row4endlabel"
                    android:inputType="numberDecimal"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="万"
                    android:textSize="18sp"
                    android:layout_marginLeft="10dp"
                    android:layout_centerVertical="true"
                    android:layout_alignParentEnd="true"
                    android:id="@+id/row4endlabel"/>
            </RelativeLayout>
            <RelativeLayout
                android:id="@+id/relativeLayout5"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/relativeLayout4"
                android:layout_marginTop="5dp">
                <CheckBox
                    android:id="@+id/check2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="公积金:"/>
                <EditText
                    android:id="@+id/row5label"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:hint="请输入公积金贷款总额(单位万)"
                    android:singleLine="true"
                    android:textSize="16dp"
                    android:background="@drawable/edittext_style"
                    android:padding="5dp"
                    android:gravity="right"
                    android:layout_toRightOf="@+id/check2"
                    android:layout_toLeftOf="@+id/row5endlabel"
                    android:inputType="numberDecimal"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="万"
                    android:textSize="18sp"
                    android:layout_marginLeft="10dp"
                    android:layout_centerVertical="true"
                    android:layout_alignParentEnd="true"
                    android:id="@+id/row5endlabel" />
            </RelativeLayout>
            <RelativeLayout
                android:id="@+id/relativeLayout6"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/relativeLayout5"
                android:layout_marginTop="10dp">
                <TextView
                    android:id="@+id/row6label"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="贷款年限:"
                    android:textSize="16sp"
                    android:layout_centerVertical="true"/>
                <Spinner
                    android:id="@+id/sp1"
                    android:layout_centerVertical="true"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:spinnerMode="dialog"
                    android:layout_toRightOf="@+id/row6label">
                </Spinner>
            </RelativeLayout>
            <RelativeLayout
                android:id="@+id/relativeLayout7"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/relativeLayout6"
                android:layout_marginTop="10dp">
                <TextView
                    android:id="@+id/row7label"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="基准利率:"
                    android:layout_centerVertical="true"
                    android:textSize="16sp"/>
                <Spinner
                    android:id="@+id/sp2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:spinnerMode="dialog"
                    android:layout_centerVertical="true"
                    android:layout_toRightOf="@+id/row7label">
                </Spinner>
            </RelativeLayout>
            <Button
                android:id="@+id/detail"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/relativeLayout7"
                android:layout_marginTop="15dp"
                android:background="@drawable/btn_style"
                android:text="计算还款明细"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="还款总额为:***万\n其中利息总额为:***万\n月供(每月还款额)为:***"
                android:layout_below="@+id/detail"
                android:layout_marginTop="10dp"
                android:textSize="16sp"
                android:id="@+id/alldetail"/>
        </RelativeLayout>
    </ScrollView>
</RelativeLayout>

edittext_style.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true">
        <shape>
            <corners android:radius="5dp"/>
            <stroke android:width="1dp"
                android:color="#00DDFF"/>
        </shape>
    </item>
    <item android:state_focused="false">
        <shape>
            <corners android:radius="5dp"/>
            <stroke android:width="1dp"
                android:color="#000000"/>
        </shape>
    </item>
</selector>

btn_style.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
        <shape>
            <solid android:color="#808080"/>
            <corners android:radius="2dp"/>
            <stroke android:width="1dp"
                android:color="@color/teal_200"/>
        </shape>
    </item>
    <item android:state_pressed="false">
        <shape>
            <solid android:color="#33E3F3"/>
            <corners android:radius="2dp"/>
            <stroke android:width="1dp"
                android:color="#07AC78"/>
        </shape>
    </item>
</selector>

dimens.xml

<resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>
</resources>

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

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android实现房贷计算器

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android如何实现房贷计算器

今天小编给大家分享一下Android如何实现房贷计算器的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。fangdai(acti
2023-06-30

Android实现加法计算器

本文实例为大家分享了Android实现加法计算器的具体代码,供大家参考,具体内容如下布局 2022-06-06

Android实现简易计算器(可以实现连续计算)

发一个库存程序,好像是几个礼拜之前写的吧,是一个用安卓实现的简易的计算器,写这个小程序之前,看了很多人写的计算器,觉得使用一个 EditText,并将它设置为不可编写,是比较好的解决方案。 设计思路主要是: 根据用户的点击,在一个 Edit
2022-06-06

Android studio实现简单计算器

本文实例为大家分享了Android studio实现简单计算器的具体代码,供大家参考,具体内容如下 需求分析 在Android studio中设计并实现一个简单的计算器,实现连续的加减乘除运算。 界面设计 采用网格GridLayout布局,
2022-06-06

Android实现简单加法计算器

本文实例为大家分享了Android实现简单加法计算器的具体代码,供大家参考,具体内容如下package com.example.calculator; import android.os.Bundle; import android.app
2022-06-06

android计算器简单实现代码

本文实例为大家分享了android计算器的具体实现代码,供大家参考,具体内容如下java代码:package com.itheima74.simplecalculator4; import android.os.Bundle; import
2022-06-06

简单实现Android计算器功能

自己写的安卓的计算器: 注:这个是在mac中开发的,如果要在windows的eclipse中运行可能会出现路径问题,解决办法从windows中已有的安卓工程根目录下复制一下classpath文件,然后复制粘贴覆盖掉这个工程根目录里面的路径文
2022-06-06

Android Studio实现简单计算器APP

一、简介:用Android Studio 实现一个简单的计算器APP,并在蓝叠模拟器中运行。 该计算器只能实现两位数字的四则运算。 二、代码 activity_main.xml ---界面设计
2022-06-06

android计时器,时间计算器的实现方法

需求:默认为"00:00:00",点击开始按钮时清零后开始计时,出现如10:28:34。点击停止的时候停止计时。问题:使用Calendar DateFormat的方法,不设置时区获取到的小时是本地时区的(东八区的就是8),设置成GMT标准时
2022-06-06

Android Studio怎么实现简易计算器设计

今天小编给大家分享一下Android Studio怎么实现简易计算器设计的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一、题
2023-06-30

Android Studio实现简单计算器功能

本文实例为大家分享了Android Studio实现简单计算器功能的具体代码,供大家参考,具体内容如下 程序步骤: (1)在布局文件定义一些计算器界面的文本框,按钮等组件。 (2)在Activity中获取组件实例。 (3)通过swtich函
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录