美文网首页Android进阶+实战Android开发实用技巧Android
Android开发之那些好用的数据结构与API(二)

Android开发之那些好用的数据结构与API(二)

作者: YungFan | 来源:发表于2016-05-05 19:36 被阅读2622次

    Android开发之那些好用的数据结构与API 一文中提到了Android中一些好用的数据结构和API,这次继续补充几个我在项目中用到的好用的但是不是人人都知道的东东 ~~

    </br>

    1、android:digits

    在Android开发中,经常要设置EditText为密码显示,但是通常要求密码只能是 **字母和数字 . _ **的组合,此时就可以用该属性进行过滤

    
    <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:digits="0123456789abcdefghigklmnopqrstuvwxyzQWERTYUIOPASDFGHJKLZXCVBNM._" />
    

    测试效果

    digits.gif

    2、setKeyListener()

    接着上面说,还有一种方法也可以限定EditText输入字符,那就是给EditText设置KeyListener

    et.setKeyListener(new NumberKeyListener() {
    
                //限制弹出的键盘类型
                public int getInputType() {
    
                    return InputType.TYPE_CLASS_NUMBER;
    
                }
    
                //限定输入的字符
                protected char[] getAcceptedChars() {
    
                    char[] numbers = new char[]{'.', '1', '3', '5', '7', '9'};
    
                    return numbers;
    
                }
    
            });
    

    测试效果

    setKeyListener.gif

    3、ListView 的 setEmptyView

    该方法可以为没有数据的ListView 设置一个提示View,常常用在ListView没有加载到数据或加载数据失败时提示

    布局 (需要准备一个背景透明的提示图片)

    <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"
        tools:context=".MainActivity">
    
        <ListView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#123456" />
    
        <ImageView
            android:id="@+id/empty"
            android:layout_width="match_parent "
            android:layout_height="match_parent"
            android:layout_centerInParent="true"
            android:src="@mipmap/nomorenomal" />
    
    </RelativeLayout>
    
    

    Activity

    public class MainActivity extends AppCompatActivity {
    
        private ListView mliListView;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            mliListView = (ListView) findViewById(R.id.list);
    
            mliListView.setEmptyView(findViewById(R.id.empty));
        }
    
    }
    

    测试效果

    setEmptyView.png

    注意
    经过本人测试,如果ListView包含在某些下拉刷新框架中,这样做是没有效果的,应该是冲突了。

    4、android:duplicateParentState="true"

    该属性可以让子View跟随其Parent的状态。常见的使用场景是某个按钮特别小,为了设置点击事件,给其包裹一层Parent布局,将点击事件写到Parent上,如果希望被包裹按钮的点击效果对应的Selector继续生效的话,就可以使用它了,来个有说服力的测试案例。

    准备好4个图片,做成2个 StateListDrawable

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <!-- 触摸模式下单击时的背景图片-->
        <item android:drawable="@drawable/backp" android:state_pressed="true" />
        <!-- 默认时的背景图片-->
        <item android:drawable="@drawable/bacn" />
    </selector>
    
    
    
    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@drawable/press" android:state_pressed="true" />
        <item android:drawable="@drawable/nomal" />
    </selector>
    
    

    布局

    <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"
        tools:context=".MainActivity">
    
        <RelativeLayout
            android:id="@+id/content"
            android:layout_width="300dp"
            android:layout_height="300dp"
            android:layout_centerInParent="true"
            android:background="@drawable/selector_back">
    
            <Button
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_alignParentBottom="true"
                android:background="@drawable/selector"
                android:duplicateParentState="true" />
    
        </RelativeLayout>
    
    </RelativeLayout>
    
    

    此时直接运行测试,只有按钮有点击事件,直接点击按钮

    测试1.gif

    给RelativeLayout添加点击事件

    RelativeLayout rl = (RelativeLayout) findViewById(R.id.content);
    
    rl.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
    
                }
            });
    

    此时运行测试,按钮和相对布局都有点击事件,点击相对布局,发现按钮并没有变化

    测试2.gif

    给Button添加 android:duplicateParentState="true

    <Button
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_alignParentBottom="true"
                android:background="@drawable/selector"
                android:duplicateParentState="true" />
    

    再次运行测试,再次点击相对布局,发现按钮也跟着变化了

    测试3.gif

    相关文章

      网友评论

      本文标题:Android开发之那些好用的数据结构与API(二)

      本文链接:https://www.haomeiwen.com/subject/wcwhrttx.html