Cannot resolve symbol 'inputView_is_password'

来源:5-4 自定义控件

清太木

2019-09-17 11:50

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();
}


写回答 关注

1回答

  • 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>


    qq_东暖夏...

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

    2019-09-19 08:35:07

    共 1 条回复 >

我的云音乐(一)

高仿网易云音乐,从零开始开发一款专属自己的音乐APP。

15925 学习 · 104 问题

查看课程

相似问题