• Android 设置让EditText不自动获取焦点


    在EditText所在的父控件中设置如下属性:

    android:focusable="true"
    android:focusableInTouchMode="true"

    例如:

    <LinearLayout 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:focusable="true"
            android:focusableInTouchMode="true">
            
            <com.wzh.view.ClearEditText
                android:layout_marginTop="5dp"
                android:id="@+id/etBqyshwjlw"
                style="@style/cetStyle"
                android:maxLength="12"
                android:hint="本期应税货物及劳务"/>
        
            <com.wzh.view.ClearEditText
                android:layout_marginTop="5dp"
                android:id="@+id/etBqysfw"
                style="@style/cetStyle"
                android:maxLength="12"
                android:hint="本期应税服务"/>
            
            <com.wzh.view.ClearEditText
                android:layout_marginTop="5dp"
                android:id="@+id/etBnyshwjlw"
                style="@style/cetStyle"
                android:maxLength="12"
                android:hint="本年累计应税货物及劳务"/>
            
            <com.wzh.view.ClearEditText
                android:layout_marginTop="5dp"
                android:id="@+id/etBnysfw"
                style="@style/cetStyle"
                android:maxLength="12"
                android:hint="本年累计应税服务"/>
        </LinearLayout>
  • 相关阅读:
    滚动加载图片
    轮播图
    各种插件
    IE兼容
    文字换行
    CSS3 transform用法
    隐藏手机号中间几位数
    js实现收藏,首页等功能
    loading练习
    animation练习
  • 原文地址:https://www.cnblogs.com/yshyee/p/3454204.html
Copyright © 2020-2023  润新知