从零开始的体温app开发(基本操作) editText0 = (EditText) findViewById(R.id.edt_name); editText0.setText();//编辑 编辑框内容 Intent intent = new Intent(); intent.setClass(ge ...
分类:
编程语言 时间:
2021-06-20 18:06:10
阅读次数:
0
排错过程: ① FATAL EXCEPTION: main 致命异常 ②找到 caused by 类型转换异常 **** cannot be cast to ***** 一种类型不能被转换成另一种类型 Caused by: java.lang.ClassCastException: android. ...
分类:
其他好文 时间:
2021-06-02 19:45:14
阅读次数:
0
Android身份证号、车牌号快捷输入键盘 项目地址 Github 键盘部分在 keyboard module 中 键盘与EditText绑定参照 MainActivity ...
分类:
移动开发 时间:
2021-01-28 12:04:45
阅读次数:
0
package com.example.test3; import android.app.AliasActivity; import android.app.ProgressDialog; import android.os.Bundle; import android.view.View; im ...
分类:
移动开发 时间:
2020-11-30 16:11:54
阅读次数:
19
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ ...
分类:
其他好文 时间:
2020-11-30 15:26:42
阅读次数:
3
一、EditText标签作用 用于输入文字,类似于HTML中的<input type="text" />标签 二、EditText标签继承TextView标签,很多TextView标签的样式它同样也支持。 三、Edit标签特有的属性: <EditText android:id="@+id/et1" ...
分类:
移动开发 时间:
2020-10-24 10:21:46
阅读次数:
41
【网址:www.javayihao.top】【布局标签网址:https://www.cnblogs.com/ZSK991656110/p/4815506.html】【edittext:https://blog.csdn.net/wenzhi20102321/article/details/79477 ...
分类:
移动开发 时间:
2020-07-03 17:06:55
阅读次数:
64
前言 本文简记 Android 控件 TextView 的常用属性及使用方法。 常用属性 基础属性 请参阅:Android 布局与相关属性 的基础属性部分。 包括:id 属性,宽度、高度属性,背景属性,内、外边距属性等。 文本相关 文本内容属性:android:text="" 文本颜色属性:andr ...
分类:
移动开发 时间:
2020-06-19 14:18:07
阅读次数:
76
最近UI对于手机号输入框提出了要自动添加空格的需求,没办法,产品和UI就是大爷,说了就要做呀。 但是在网上搜了好多资料,说着是能够实现,但是大多数都是无脑的Ctrl+C 和Ctrl+V,根本就没有实践过,就直接复制粘贴,完全是不负责任的。也不知道源头是谁。 既然咱们踩过坑了,就要为后人修好路。 在此 ...
分类:
移动开发 时间:
2020-06-04 19:50:57
阅读次数:
181