Android——实现汇率转换的两个联动EditText

项目需求:

1.两个框框,第一个输入第二个变,第二个输入第一个变(简单?再加需求)
2.输入的是数字(简单?再加需求)
3.小数输入的时候需要格式化:第一位是0,后面输入别的都不行,只能输入小数点;第一位是小数点,直接个成“0.”(简单?再加需求)
4.数字格式化千分位并限制位数,即“###,###,###.00”(简单?目前没需求了)

之前准备

毕竟程序猿,怎么不会copy呢?百度,Google搜完以后发现,要么是只实现千分位,要么只实现需求3,单独拿出他们写的代码组合在一起永远不是最完美的。所以呢,自食其力,边学边做边实现吧!

支持原作

我的千分位做法基本就是抄袭这里的:https://blog.csdn.net/uusad/article/details/7988730
感谢大佬!感谢大佬!感谢大佬!

其他都是废话,直接上代码

  • 先是res文件走起
    1.布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:text="@string/tv_tips"
        android:textColor="@color/colorPrimaryDark"
        android:textSize="14sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:padding="10dp">

        <TextView
            android:id="@+id/tv_cny"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="@string/tv_cny"
            android:textSize="18sp" />

        <com.example.caixiaoshu.rate_change.LastInputEditText
            android:id="@+id/et_cny"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:cursorVisible="false"
            android:hint="@string/et_cny_hint"
            android:inputType="numberDecimal"
            android:textSize="18sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:padding="10dp">

        <TextView
            android:id="@+id/tv_usd"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="@string/tv_usd"
            android:textSize="18sp" />

        <com.example.caixiaoshu.rate_change.LastInputEditText
            android:id="@+id/et_usd"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:cursorVisible="false"
            android:hint="@string/et_usd_hint"
            android:inputType="numberDecimal"
            android:textSize="18sp" />
    </LinearLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:padding="20dp"
        android:text="@string/tv_hope"
        android:textColor="@color/colorPrimaryDark"
        android:textSize="16sp" />
</LinearLayout>

2.strings文件(容我骚操作一波)

<resources>
    <string name="app_name">汇率转换</string>
    <string name="tv_tips">这是一个单纯的汇率转换工具\n\n1.实现两个EditText的联动\n2.实现EditText内容的实时修改格式化(千分位等)\n\nyy:1 CNY = 9.130515 USD</string>
    <string name="tv_cny">人民币CNY</string>
    <string name="et_cny_hint">人民币CNY金额</string>
    <string name="tv_usd">美元USD</string>
    <string name="et_usd_hint">美元USD金额</string>
    <string name="tv_hope">真心的希望某年某月某日的时候,可以实现这个汇率大小,甚至全球只用我大天国的人民币</string>
</resources>
  • 源代码走起
    1.自定义控件一波
    这里有个问题,我并不想显示光标出来,并且也不许在输入过程中在数据中间插入数据,所以将光标永远置于数据之后(别看作者名字叫anCheng,其实他是个爷们,我同学贡献出来的注意)
package com.example.caixiaoshu.rate_change;

import android.content.Context;
import android.support.v7.widget.AppCompatEditText;
import android.util.AttributeSet;

/**
 * @author: anCheng
 * @date: 2018/4/26.
 * @desc:
 */
public class LastInputEditText extends AppCompatEditText {

    public LastInputEditText(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public LastInputEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public LastInputEditText(Context context) {
        super(context);
    }

    @Override
    protected void onSelectionChanged(int selStart, int selEnd) {
        super.onSelectionChanged(selStart, selEnd);
        //保证光标始终在最后面
        if (selStart == selEnd) {
            //防止不能多选
            setSelection(getText().length());
        }

    }
}

2.主代码
网上大多数都是在TextWatcher中的beforeTextChanged中移除另一个EditText的监听,之后在afterTextChanged中再将另一个EditText监听回来。虽然也能实现,但限于我懒的细细去研究一番,直接在获取焦点的时候设置自己的监听,失去焦点的时候移除自己的监听,完美!!!

package com.example.caixiaoshu.rate_change;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

import java.math.RoundingMode;
import java.text.DecimalFormat;

public class MainActivity extends AppCompatActivity {

    private TextView tvCNY, tvUSD;
    private LastInputEditText etCNY, etUSD;
    private FormatNumTextWatch textWatch1, textWatch2;
    private double rate = 9.130515;
    private final int beforePot = 7;//小数点前保留7位
    private final int afterPot = 2;//小数点后保留2位
    private static final String TAG = "MainActivity";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        tvCNY = findViewById(R.id.tv_cny);
        tvUSD = findViewById(R.id.tv_usd);
        etCNY = findViewById(R.id.et_cny);
        etUSD = findViewById(R.id.et_usd);
        textWatch1 = new FormatNumTextWatch(etCNY, etUSD, true);
        textWatch2 = new FormatNumTextWatch(etUSD, etCNY, false);

        etCNY.setOnFocusChangeListener(new View.OnFocusChangeListener() {
            @Override
            public void onFocusChange(View view, boolean b) {
                if (b) {
                    Log.e(TAG, "etCNY获得了焦点");
                    changeColor(1);
                    etCNY.setText("");
                    etUSD.setText("");
                    etCNY.addTextChangedListener(textWatch1);
                } else {
                    Log.e(TAG, "etCNY失去了焦点");
                    changeColor(2);
                    etCNY.removeTextChangedListener(textWatch1);
                }
            }
        });
        etUSD.setOnFocusChangeListener(new View.OnFocusChangeListener() {
            @Override
            public void onFocusChange(View view, boolean b) {
                if (b) {
                    Log.e(TAG, "etUSD获得了焦点");
                    changeColor(2);
                    etUSD.setText("");
                    etCNY.setText("");
                    etUSD.addTextChangedListener(textWatch2);
                } else {
                    Log.e(TAG, "etUSD失去了焦点");
                    changeColor(1);
                    etUSD.removeTextChangedListener(textWatch2);
                }
            }
        });

        etCNY.requestFocus();
    }


    /**
     * 根据焦点所在位置实时修改选中位置的颜色
     *
     * @param i 1,表示etCNY获得焦点;2,表示etUSD获得焦点
     */
    private void changeColor(int i) {
        if (1 == i) {
            tvCNY.setTextColor(getResources().getColor(R.color.colorAccent));
            etCNY.setTextColor(getResources().getColor(R.color.colorAccent));
            tvUSD.setTextColor(getResources().getColor(R.color.colorPrimary));
            etUSD.setTextColor(getResources().getColor(R.color.colorPrimary));
        } else {
            tvUSD.setTextColor(getResources().getColor(R.color.colorAccent));
            etUSD.setTextColor(getResources().getColor(R.color.colorAccent));
            tvCNY.setTextColor(getResources().getColor(R.color.colorPrimary));
            etCNY.setTextColor(getResources().getColor(R.color.colorPrimary));
        }
    }

    /**
     * 自定义的TextWatch
     */
    public class FormatNumTextWatch implements TextWatcher {
        private EditText currentEt;
        private EditText changeEt;
        private boolean isCNY;

        public FormatNumTextWatch(EditText curretnEt, EditText changeEt, boolean isCNY) {
            this.currentEt = curretnEt;
            this.changeEt = changeEt;
            this.isCNY = isCNY;
        }

        @Override
        public void beforeTextChanged(CharSequence charSequence, int start, int count, int after) {

        }

        @Override
        public void onTextChanged(CharSequence charSequence, int start, int before, int count) {
//            Log.e(TAG, "onTextChanged ==> start = " + start + ", before = " + before + ", count = " + count);
        }

        @Override
        public void afterTextChanged(Editable editable) {
            String currentStr = editable.toString().trim().replace(",", "");
            if (!TextUtils.equals(temp, currentStr)) {
                String changeStr = formatCurrentNum(currentStr);
                currentStr = changeStr.replace(",", "");
                currentEt.setText(changeStr);
                currentEt.setSelection(changeStr.length());
                if (!TextUtils.isEmpty(currentStr) && !TextUtils.equals("", currentStr)) {
                    double current = Double.valueOf(currentStr);
                    double change;
                    if (isCNY) {
                        change = current * rate;
                    } else {
                        change = current / rate;
                    }
                    changeEt.setText(formatChangeNum(change));
                } else {
                    changeEt.setText("");
                }
            }
        }
    }

    private String temp = "";

    /**
     * 格式化当前输入的数据满足一下要求
     * 1.第一位是0时,接下来只能接小数点
     * 2.第一位是小数点时,直接前面补0
     * 3.可以千分位
     * 4.整数最大7位,小数点后最大2位
     *
     * @param value
     * @return
     */
    private String formatCurrentNum(String value) {
        temp = value;
        //处理负数
        boolean neg = false;
        if (value.startsWith("-")) {
            value = value.substring(1);
            neg = true;
        }
        //处理数据前面的0
        if (value.indexOf('0') == 0 && value.indexOf('.') != 1) {
            value = "0";
        }
        //处理小数点之前
        String before = "";
        String after = "";
        if (value.indexOf('.') != -1) {
            before = value.substring(0, value.indexOf('.'));
            after = value.substring(value.indexOf('.'));
        } else {
            before = value;
        }
        if (before.length() > beforePot) {
            before = before.substring(0, beforePot);
        }
        value = before + after;

        //处理小数之后
        String tail = null;
        if (value.indexOf('.') == 0) {
            value = "0" + value;
        }
        if (value.indexOf('.') != -1) {
            tail = value.substring(value.indexOf('.'));
            value = value.substring(0, value.indexOf('.'));
        }
        StringBuilder sb = new StringBuilder(value);
        sb.reverse();
        for (int i = 3; i < sb.length(); i += 4) {
            sb.insert(i, ',');
        }
        sb.reverse();
        if (neg) {
            sb.insert(0, '-');
        }
        if (tail != null) {
            if (tail.length() > afterPot + 1) {
                tail = tail.substring(0, afterPot + 1);
            }
            sb.append(tail);
        }
        return sb.toString();
    }

    /**
     * 格式化数据,涉及到金额的数据不能四合五入,直接省去后面的金额
     *
     * @param value
     * @return
     */
    private String formatChangeNum(Double value) {
        DecimalFormat formater = new DecimalFormat("#,##0.##");
        formater.setRoundingMode(RoundingMode.FLOOR);
        String format = formater.format(value);
        return format;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容