本文实例为大家分享了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>

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

Android实现房贷计算器的更多相关文章

  1. html5 canvas合成海报所遇问题及解决方案总结

    这篇文章主要介绍了html5 canvas合成海报所遇问题及解决方案总结,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  2. Html5 video标签视频的最佳实践

    这篇文章主要介绍了Html5 video标签视频的最佳实践,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

  3. HTML5在微信内置浏览器下右上角菜单的调整字体导致页面显示错乱的问题

    HTML5在微信内置浏览器下,在右上角菜单的调整字体导致页面显示错乱的问题,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧

  4. ios – containerURLForSecurityApplicationGroupIdentifier:在iPhone和Watch模拟器上给出不同的结果

    我使用默认的XCode模板创建了一个WatchKit应用程序.我向iOSTarget,WatchkitAppTarget和WatchkitAppExtensionTarget添加了应用程序组权利.(这是应用程序组名称:group.com.lombax.fiveminutes)然后,我尝试使用iOSApp和WatchKitExtension访问共享文件夹URL:延期:iOS应用:但是,测试NSURL

  5. Ionic – Splash Screen适用于iOS,但不适用于Android

    我有一个离子应用程序,其中使用CLI命令离子资源生成的启动画面和图标iOS版本与正在渲染的启动画面完美配合,但在Android版本中,只有在加载应用程序时才会显示白屏.我检查了config.xml文件,所有路径看起来都是正确的,生成的图像出现在相应的文件夹中.(我使用了splash.psd模板来生成它们.我错过了什么?这是config.xml文件供参考,我觉得我在这里做错了–解决方法在config.xml中添加以下键:它对我有用!

  6. ios – 无法启动iPhone模拟器

    /Library/Developer/CoreSimulator/Devices/530A44CB-5978-4926-9E91-E9DBD5BFB105/data/Containers/Bundle/Application/07612A5C-659D-4C04-ACD3-D211D2830E17/ProductName.app/ProductName然后,如果您在Xcode构建设置中选择标准体系结构并再次构建和运行,则会产生以下结果:dyld:lazysymbolbindingFailed:Symbol

  7. Xamarin iOS图像在Grid内部重叠

    heyo,所以在Xamarin我有一个使用并在其中包含一对,所有这些都包含在内.这在Xamarin.Android中看起来完全没问题,但是在Xamarin.iOS中,图像与标签重叠.我不确定它的区别是什么–为什么它在Xamarin.Android中看起来不错但在iOS中它的全部都不稳定?

  8. 在iOS上向后播放HTML5视频

    我试图在iPad上反向播放HTML5视频.HTML5元素包括一个名为playbackRate的属性,它允许以更快或更慢的速率或相反的方式播放视频.根据Apple’sdocumentation,iOS不支持此属性.通过每秒多次设置currentTime属性,可以反复播放,而无需使用playbackRate.这种方法适用于桌面Safari,但似乎在iOS设备上的搜索限制为每秒1次更新–在我的情况下太慢了.有没有办法在iOS设备上向后播放HTML5视频?解决方法iOS6Safari现在支持playbackRat

  9. 使用 Swift 语言编写 Android 应用入门

    Swift标准库可以编译安卓armv7的内核,这使得可以在安卓移动设备上执行Swift语句代码。做梦,虽然Swift编译器可以胜任在安卓设备上编译Swift代码并运行。这需要的不仅仅是用Swift标准库编写一个APP,更多的是你需要一些框架来搭建你的应用用户界面,以上这些Swift标准库不能提供。简单来说,构建在安卓设备上使用的Swiftstdlib需要libiconv和libicu。通过命令行执行以下命令:gitclonegit@github.com:SwiftAndroid/libiconv-libi

  10. Android – 调用GONE然后VISIBLE使视图显示在错误的位置

    我有两个视图,A和B,视图A在视图B上方.当我以编程方式将视图A设置为GONE时,它将消失,并且它正下方的视图将转到视图A的位置.但是,当我再次将相同的视图设置为VISIBLE时,它会在视图B上显示.我不希望这样.我希望视图B回到原来的位置,这是我认为会发生的事情.我怎样才能做到这一点?编辑–代码}这里是XML:解决方法您可以尝试将两个视图放在RelativeLayout中并相对于彼此设置它们的位置.

随机推荐

  1. Flutter 网络请求框架封装详解

    这篇文章主要介绍了Flutter 网络请求框架封装详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  2. Android单选按钮RadioButton的使用详解

    今天小编就为大家分享一篇关于Android单选按钮RadioButton的使用详解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

  3. 解决android studio 打包发现generate signed apk 消失不见问题

    这篇文章主要介绍了解决android studio 打包发现generate signed apk 消失不见问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

  4. Android 实现自定义圆形listview功能的实例代码

    这篇文章主要介绍了Android 实现自定义圆形listview功能的实例代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  5. 详解Android studio 动态fragment的用法

    这篇文章主要介绍了Android studio 动态fragment的用法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  6. Android用RecyclerView实现图标拖拽排序以及增删管理

    这篇文章主要介绍了Android用RecyclerView实现图标拖拽排序以及增删管理的方法,帮助大家更好的理解和学习使用Android,感兴趣的朋友可以了解下

  7. Android notifyDataSetChanged() 动态更新ListView案例详解

    这篇文章主要介绍了Android notifyDataSetChanged() 动态更新ListView案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下

  8. Android自定义View实现弹幕效果

    这篇文章主要为大家详细介绍了Android自定义View实现弹幕效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  9. Android自定义View实现跟随手指移动

    这篇文章主要为大家详细介绍了Android自定义View实现跟随手指移动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  10. Android实现多点触摸操作

    这篇文章主要介绍了Android实现多点触摸操作,实现图片的放大、缩小和旋转等处理,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

返回
顶部