当前位置:  编程技术>移动开发
本页文章导读:
    ▪文本框兑现搜索和清空效果        文本框实现搜索和清空效果 前言   本文实现的效果:文本框输入为空时显示输入的图标;不为空时显示清空的图标,此时点击清空图标能清空文本框内输入文字。   声明   欢迎转载.........
    ▪ FLAG_ACTIVITY_NEW_TASK跟affinity亲和力        FLAG_ACTIVITY_NEW_TASK和affinity亲和力   一直以为在intent里加了FLAG_ACTIVITY_NEW_TASK标记,启动的Activity会被加入一个新的Task栈里,这种理解是错误的。   加了这个FLAG_ACTIVITY_NEW_TASK标记,不一定.........
    ▪ 【转载】PreferenceActivity对系统进展信息配置和管理       【转载】PreferenceActivity对系统进行信息配置和管理 <PreferenceCategory android:title="无线和网络设置">  <CheckBoxPreference   android:key="apply_fly"   android:summary="禁用所有无线连接"   android:tit.........

[1]文本框兑现搜索和清空效果
    来源: 互联网  发布时间: 2014-02-18
文本框实现搜索和清空效果

前言

  本文实现的效果:文本框输入为空时显示输入的图标;不为空时显示清空的图标,此时点击清空图标能清空文本框内输入文字。

 

声明

  欢迎转载,但请保留文章原始出处:)

    博客园:http://www.cnblogs.com

    农民伯伯: http://over140.cnblogs.com 

 

正文

  一、实现效果

    

       

 

  二、实现代码

    监听输入

    /**
     * 动态搜索
     */
    private TextWatcher tbxSearch_TextChanged = new TextWatcher() {

        //缓存上一次文本框内是否为空
        private boolean isnull = true;

        @Override
        public void afterTextChanged(Editable s) {
            if (TextUtils.isEmpty(s)) {
                if (!isnull) {
                    mSearchView.setCompoundDrawablesWithIntrinsicBounds(null,
                            null, mIconSearchDefault, null);
                    isnull = true;
                }
            } else {
                if (isnull) {
                    mSearchView.setCompoundDrawablesWithIntrinsicBounds(null,
                            null, mIconSearchClear, null);
                    isnull = false;
                }
            }
        }

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

        /**
         * 随着文本框内容改变动态改变列表内容
         */
        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {
            
        }
    };
复制代码

     触摸事件

    private OnTouchListener txtSearch_OnTouch = new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            switch (event.getAction()) {
            case MotionEvent.ACTION_UP:
                int curX = (int) event.getX();
                if (curX > v.getWidth() - 38
                        && !TextUtils.isEmpty(mSearchView.getText())) {
                    mSearchView.setText("");
                    int cacheInputType = mSearchView.getInputType();// backup  the input type
                    mSearchView.setInputType(InputType.TYPE_NULL);// disable soft input
                    mSearchView.onTouchEvent(event);// call native handler
                    mSearchView.setInputType(cacheInputType);// restore input  type
                    return true;// consume touch even
                }
                break;
            }
            return false;
        }
    };
复制代码

    绑定事件

    private Drawable mIconSearchDefault; // 搜索文本框默认图标
    private Drawable mIconSearchClear; // 搜索文本框清除文本内容图标

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main)
        
        final Resources res = getResources();
        mIconSearchDefault = res.getDrawable(R.drawable.txt_search_default);
        mIconSearchClear = res.getDrawable(R.drawable.txt_search_clear);
        
        mSearchView = (EditText) findViewById(R.id.txtSearch);
        mSearchView.addTextChangedListener(tbxSearch_TextChanged);
        mSearchView.setOnTouchListener(txtSearch_OnTouch);
    }
复制代码

    代码说明:

      1. 为输入框绑定触摸事件(模拟点击事件捕捉)。通过监听点击区域判断是否点击清空图片,如果在该区域并且文本框不为空,则清空文本框。

      2. 为输入框绑定文本改变事件监听,根据内容改变动态设置图标显示。

      3. 维持清空操作后软键盘状态。

 

  三、参考

    1.  how to block virtual keyboard while clicking on edittext in android?

 

  四、小图标下载

      

    (右键另存为即可。)

 

结束 

  活用好每一个控件的属性、方法和事件能实现很多有意思的效果。欢迎大家交流。

 


    
[2] FLAG_ACTIVITY_NEW_TASK跟affinity亲和力
    来源: 互联网  发布时间: 2014-02-18
FLAG_ACTIVITY_NEW_TASK和affinity亲和力

  一直以为在intent里加了FLAG_ACTIVITY_NEW_TASK标记,启动的Activity会被加入一个新的Task栈里,这种理解是错误的。

  加了这个FLAG_ACTIVITY_NEW_TASK标记,不一定会启动一个新的栈,其步骤是:先查找有没有和这个Activity的affinity相同的task栈,如果有,则直接在这个task栈里启动,不然才创建一个新的task栈。

详情请看:http://www.cnblogs.com/newcj/articles/1981964.html


    
[3] 【转载】PreferenceActivity对系统进展信息配置和管理
    来源: 互联网  发布时间: 2014-02-18
【转载】PreferenceActivity对系统进行信息配置和管理
<PreferenceCategory android:title="无线和网络设置"> 
 <CheckBoxPreference 
  android:key="apply_fly" 
  android:summary="禁用所有无线连接" 
  android:title="飞行模式"> 
 </CheckBoxPreference> 
 <CheckBoxPreference 
  android:key="apply_internet" 
  android:summary="禁用通过USB共享Internet连接" 
  android:title="Internet共享"> 
 </CheckBoxPreference> 
 <CheckBoxPreference 
  android:key="apply_wifi" 
  android:summary="打开Wi-Fi" 
  android:title="Wi-Fi"> 
 </CheckBoxPreference> 
 <Preference 
  android:summary="设置和管理无线接入点" 
  android:title="Wi-Fi设置" 
  android:dependency="apply_wifi" 
  android:key="wifi_setting"> 
 </Preference> 
 <CheckBoxPreference 
  android:key="apply_bluetooth" 
  android:summary="启用蓝牙" 
  android:title="蓝牙"> 
 </CheckBoxPreference> 
 <Preference 
  android:summary="管理连接、设备设备名称和可检测性" 
  android:title="蓝牙设置" 
  android:dependency="apply_bluetooth" 
  android:key="bluetooth_setting"> 
 </Preference> 
 <EditTextPreference 
  android:key="number_edit" 
  android:title="输入电话号码"> 
 </EditTextPreference> <ListPreference 
  android:title="部门设置" 
  android:entries="@array/department" 
  android:entryValues="@array/department_value" 
  android:dialogTitle="选择部门" 
  android:key="depart_value"> 
 </ListPreference> 
 <RingtonePreference 
  android:ringtoneType="all" 
  android:title="玲聲" 
  android:showDefault="true" 
  android:key="ring_key" 
  android:showSilent="true"> 
 </RingtonePreference> 
</PreferenceCategory>

 


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3