2015/9/9-2

2015/9/9问题集

Android 带清除功能的输入框控件ClearEditText,仿IOS的输入框

出处http://blog.csdn.net/xiaanming/article/details/11066685

就是在Android系统的输入框右边加入一个小图标,点击小图标可以清除输入框里面的内容,IOS上面直接设置某个属性就可以实现这一功能,但是Android原生EditText不具备此功能,所以要想实现这一功能我们需要重写EditText,接下来就带大家来实现这一小小的功能
我们知道,我们可以为我们的输入框在上下左右设置图片,所以我们可以利用属性android:drawableRight设置我们的删除小图标

如果我们能为右边的图片设置监听,点击右边的图片清除输入框的内容并隐藏删除图标,这样子这个小功能就迎刃而解了,可是Android并没有给允许我们给右边小图标加监听的功能,这时候你是不是发现这条路走不通呢,其实不是,我们可能模拟点击事件,用输入框的的onTouchEvent()方法来模拟,
当我们触摸抬起(就是ACTION_UP的时候)的范围 大于输入框左侧到清除图标左侧的距离,小与输入框左侧到清除图片右侧的距离,我们则认为是点击清除图片,当然我这里没有考虑竖直方向,只要给清除小图标就上了监听,其他的就都好处理了

ClearEditText的代码

package com.zsz.develop.clearedittextdemo;

import android.content.Context;
import android.graphics.drawable.Drawable;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnFocusChangeListener;
import android.view.animation.Animation;
import android.view.animation.CycleInterpolator;
import android.view.animation.TranslateAnimation;
import android.widget.EditText;

public class ClearEditText extends EditText implements  
    OnFocusChangeListener, TextWatcher { 

private Drawable mClearDrawable; 

public ClearEditText(Context context) { 
    this(context, null); 
} 

public ClearEditText(Context context, AttributeSet attrs) {
    //这里构造方法也很重要,不加这个很多属性不能再XML里面定义  
    this(context, attrs, android.R.attr.editTextStyle);
} 

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


private void init() { 
    mClearDrawable = getCompoundDrawables()[2];
    if (mClearDrawable == null) { 
        mClearDrawable = getResources() 
                .getDrawable(R.drawable.emotionstore_progresscancelbtn);
    } 
    mClearDrawable.setBounds(0, 0, mClearDrawable.getIntrinsicWidth(), mClearDrawable.getIntrinsicHeight());
    //默认设置隐藏图标
    setClearIconVisible(false);
    //设置焦点改变的监听
    setOnFocusChangeListener(this);
    //设置输入框里面内容发生改变的监听 
    addTextChangedListener(this); 
}
/**
 * 因为我们不能直接给EditText设置点击事件,所以我们用记住我们按下的位置来模拟点击事件
 * 当我们按下的位置 在  EditText的宽度 - 图标到控件右边的间距 - 图标的宽度  和
 * EditText的宽度 - 图标到控件右边的间距之间我们就算点击了图标,竖直方向就没有考虑
 */

@Override 
public boolean onTouchEvent(MotionEvent event) { 
    if (getCompoundDrawables()[2] != null) { 
        if (event.getAction() == MotionEvent.ACTION_UP) { 
            boolean touchable = event.getX() > (getWidth() 
                    - getPaddingRight() - mClearDrawable.getIntrinsicWidth()) 
                    && (event.getX() < ((getWidth() - getPaddingRight())));
            if (touchable) { 
                this.setText(""); 
            } 
        } 
    } 

    return super.onTouchEvent(event); 
}
/**
 * 当ClearEditText焦点发生变化的时候,判断里面字符串长度设置清除图标的显示与隐藏
 */

@Override 
public void onFocusChange(View v, boolean hasFocus) { 
    if (hasFocus) { 
        setClearIconVisible(getText().length() > 0); 
    } else { 
        setClearIconVisible(false); 
    } 
}

/**
 * 设置清除图标的显示与隐藏,调用setCompoundDrawables为EditText绘制上去
 * @param visible
 */

protected void setClearIconVisible(boolean visible) { 
    Drawable right = visible ? mClearDrawable : null; 
    setCompoundDrawables(getCompoundDrawables()[0], 
            getCompoundDrawables()[1], right, getCompoundDrawables()[3]); 
}

/**
 * 当输入框里面内容发生变化的时候回调的方法
 */
@Override
public void onTextChanged(CharSequence s, int start, int count, 
        int after) { 
    setClearIconVisible(s.length() > 0); 
} 

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

} 

@Override 
public void afterTextChanged(Editable s) { 

}


/**
 * 设置晃动动画
 */
public void setShakeAnimation(){
    this.setAnimation(shakeAnimation(50));
}

/**
 * 晃动动画
 * @param counts 1秒钟晃动多少下
 * @return
 */

public static Animation shakeAnimation(int counts){
    Animation translateAnimation = new TranslateAnimation(0, 10, 0, 0);
    translateAnimation.setInterpolator(new CycleInterpolator(counts));
    translateAnimation.setDuration(1000);
    return translateAnimation;
}


}

xml的设置

<RelativeLayout 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"
>


<com.zsz.develop.clearedittextdemo.ClearEditText
    android:id="@+id/filter_edit"
    android:layout_marginTop="5dip"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"

    android:drawableLeft="@drawable/search_bar_icon_normal"
    android:hint="dd"
    android:singleLine="true"
    android:textSize="15.0dip" />
</RelativeLayout>

ListView的setSelection()和setSelectionFromTop()联系

通常,app中的数据都是以ListView的形式展示的。默认地,把“新”数据添加到数据列表的尾部。
但是,如果是IM类型的app,比如查看历史消息这个模块。新数据并不是插到数据列表的尾部,而是插到数据列表的头部。
要实现比较好的用户体验,需要保持当前的ListView的位置。换句话说,如果我们能够随心所欲地指定ListView滚动的位置,那么这个问题就迎刃而解。
在ListView中,有一个setSelectionFromTop()方法

他的源码如下:

/** 
 * Sets the selected item and positions the selection y pixels from the top edge 
 * of the ListView. (If in touch mode, the item will not be selected but it will 
 * still be positioned appropriately.) 
 * 
 * @param position Index (starting at 0) of the data item to be selected. 
 * @param y The distance from the top edge of the ListView (plus padding) that the 
 *        item will be positioned. 
 */  
public void setSelectionFromTop(int position, int y) {  
if (mAdapter == null) {  
    return;  
}  

if (!isInTouchMode()) {  
    position = lookForSelectablePosition(position, true);  
    if (position >= 0) {  
        setNextSelectedPositionInt(position);  
    }  
} else {  
    mResurrectToPosition = position;  
}  

if (position >= 0) {  
    mLayoutMode = LAYOUT_SPECIFIC;  
    mSpecificTop = mListPadding.top + y;  

    if (mNeedSync) {  
        mSyncPosition = position;  
        mSyncRowId = mAdapter.getItemId(position);  
    }  

    requestLayout();  
}  
}  

从上面的代码可以得知,setSelectionFromTop()的作用是设置ListView选中的位置,同时在Y轴设置一个偏移量(padding值)。
ListView还有一个方法叫setSelection(),传入一个index整型数值,就可以让ListView定位到指定Item的位置。
这两个方法有什么区别呢?看一下setSelection()的具体实现,代码如下:

/** 
 * Sets the currently selected item. If in touch mode, the item will not be selected 
 * but it will still be positioned appropriately. If the specified selection position 
 * is less than 0, then the item at position 0 will be selected. 
 * 
 * @param position Index (starting at 0) of the data item to be selected. 
 */  
@Override  
public void setSelection(int position) {  
    setSelectionFromTop(position, 0);  
}  

原来,setSelection()内部就是调用了setSelectionFromTop(),只不过是Y轴的偏移量是0而已。
现在应该对setSelection()和setSelectionFromTop()有了更深刻的认识了。