问题:android:editable is deprecated: Use an to make
it editable意思:Android的:编辑是反对:使用EditText>对其编辑 分析:关于EditText控件的read-only问题,即:
无法通过UI更改其中的内容, 但可以选定部分内容...
分类:
移动开发 时间:
2014-05-24 07:12:25
阅读次数:
375
背景 主要代码 发送按钮的监听器:phone_number_editText =
(EditText) findViewById(R.id.phone_number_editText); sms_content_editText =
(EditText) findViewById(R....
分类:
移动开发 时间:
2014-05-19 14:49:49
阅读次数:
335
注意了:根据实际情况,添加实体里字段的类型,控件类型的判断才可使用。这里控件只有TextView EditText实体类字段只有String
int类型,带值的控件添加tag ,值和实体类的字段值一致package ice.ui.service;import
java.lang.reflect.Fi...
分类:
移动开发 时间:
2014-05-18 20:23:14
阅读次数:
472
EditText的自带属性里没有设置边框颜色的有俩种方式可以达到效果一种是网上比较推崇的用图作背景,另一种则是自绘图作背景的:
首先重新定义一个style。在values文件夹下新建一个style.xml文件: 接下来在drawable里添加my_edittext.xml:内容如下
其中ed...
分类:
其他好文 时间:
2014-05-16 03:17:01
阅读次数:
305
介绍EditText颤抖的动画效果
Animation1.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except...
分类:
其他好文 时间:
2014-05-15 18:12:00
阅读次数:
345
我们知道在android中点击edittext框就会自动弹出软键盘,那怎么通过点击edittext之外的部分使软键盘隐藏呢?(微信聊天时的输入框就是这个效果,这个给用户的体验还是很不错的)
首先我们要先定义一个隐藏软键盘的工具类方法: 1 public static void hideSoft...
分类:
移动开发 时间:
2014-05-14 23:20:52
阅读次数:
499
//对EditText注册OnTouch事件etSscxNssbDate.setOnTouchListener(selectDateTouchListener);//选择日期
private OnTouchListener selectDateTouchListener = new OnTou...
分类:
移动开发 时间:
2014-05-09 04:36:00
阅读次数:
532
实现android按下回车键便隐藏输入键盘,有两种方法:1.)如果布局是多个EditText,为每个EditText控件设置android:singleLine=”true”,弹出的软盘输入法中
回车键为next,直到最后一个获取焦点后显示为Done,点击Done后,软盘输入键盘便隐藏。或者将Edi...
分类:
移动开发 时间:
2014-05-08 17:42:51
阅读次数:
339
在EditText标签的外层Layout中加入focusableInTouchMode属性android:focusableInTouchMode="true"即可。
分类:
移动开发 时间:
2014-05-08 17:37:00
阅读次数:
307