android lint检查出现的问题

来源:互联网 发布:儿童散光数据 编辑:程序博客网 时间:2024/06/05 02:03

1.Missing permissions required by intent Intent.Action_Call:android.permission.CALL_PHONE

Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number));

context.startActivity(intent);
修改为:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + number));

context.startActivity(intent);


2.Expected tesource of type styleable

添加  @SuppressWarnings("ResourceType")


3.[Accessibility] Missing 'contentDescription' attribute on image 

添加 android:contentDescription=""  属性

0 0
原创粉丝点击