在Androidstudio中用EditText可以获取到小数吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Androidstudio中用EditText可以获取到小数吗相关的知识,希望对你有一定的参考价值。
用什么命令啊,谢谢各位了
参考技术A 可以的,直接 title.getText();获取到内容,转化下:
Double.valueOf(title.getText().toString());
就可以获取到了。本回答被提问者采纳 参考技术B 这个简单,第六个在布局中设置为enable属性,让它不能被操作,然后分别获取六个edittext的控件id,在代码中获取前五个的数据,当点击按钮的时候进行计算,然后把答案显示在第六个上面就行了,这里代码我就不写了,这个很简单
可清空文本的EditText
代码如下:
1 public class DeleteEditText extends EditText { 2 3 private Context mContext; 4 5 //删除图标 6 private Drawable drawableDelete; 7 8 public DeleteEditText(Context context) { 9 super(context); 10 mContext = context; 11 init(); 12 } 13 14 public DeleteEditText(Context context, AttributeSet attrs) { 15 super(context, attrs); 16 mContext = context; 17 init(); 18 } 19 20 public DeleteEditText(Context context, AttributeSet attrs, int defStyleAttr) { 21 super(context, attrs, defStyleAttr); 22 mContext = context; 23 init(); 24 } 25 26 27 private void init() { 28 drawableDelete = mContext.getResources().getDrawable(R.drawable.ic_inputbox_clear); 29 drawableDelete.setBounds(0, 0, drawableDelete.getIntrinsicWidth(), drawableDelete.getIntrinsicHeight()); 30 addTextChangedListener(new TextWatcher() { 31 @Override 32 public void beforeTextChanged(CharSequence s, int start, int count, int after) { 33 34 } 35 36 @Override 37 public void onTextChanged(CharSequence s, int start, int before, int count) { 38 39 } 40 41 @Override 42 public void afterTextChanged(Editable s) { 43 setIcon(length() > 0); 44 } 45 }); 46 setIcon(false); 47 } 48 49 @Override 50 public boolean onTouchEvent(MotionEvent event) { 51 if (drawableDelete != null && event.getAction() == MotionEvent.ACTION_UP) { 52 //获取触摸点坐标 53 int eventX = (int) event.getRawX(); 54 int eventY = (int) event.getRawY(); 55 //获取整个EdtiText的可见区域 56 Rect rect = new Rect(); 57 getGlobalVisibleRect(rect); 58 //修改区域为图标区域 59 rect.left = rect.right - 80; 60 if (rect.contains(eventX, eventY)) { 61 //触摸点在图标区域,清空文本 62 setText(""); 63 } 64 } 65 return super.onTouchEvent(event); 66 } 67 68 //根据是否有内容来绘制图标 69 private void setIcon(boolean visible) { 70 Drawable right = visible ? drawableDelete : null; 71 setCompoundDrawables(getCompoundDrawables()[0], getCompoundDrawables()[1], right, getCompoundDrawables()[3]); 72 } 73 }
以上是关于在Androidstudio中用EditText可以获取到小数吗的主要内容,如果未能解决你的问题,请参考以下文章
Android studio 设置EditText是一条横线不填内容
Android Studio - EditText 输入移动 TextView