问答详情
源自:5-4 自定义控件

Cannot resolve symbol 'inputView_is_password'

private  void init(Context context,AttributeSet attrs){
    if(attrs==null) return ;
     TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.inputView);
  inputIcon=   typedArray.getResourceId(R.styleable. inputView_input_icon,R.mipmap.logo);
  inputHint=typedArray.getString(R.styleable. inputView_input_hint);
  isPassword=typedArray.getBoolean(R.styleable. inputView_is_password,false);
    typedArray.recycle();
}


提问者:清太木 2019-09-17 11:50

个回答

  • qq_东暖夏凉_0
    2019-09-19 08:34:50

    检查变量名是否一致

    <resources>
        <declare-styleable name="inputView">
            <attr name="input_icon" format="reference"></attr>
            <attr name="input_hint" format="string"/>
          
        </declare-styleable>
    </resources>