当我在某些设备上按下按钮时,它显示“E / Sensors:ProximitySensor:未知事件(类型= 1,代码= 330,值= 1)”,此处我给出了我的代码。
XML
<Button
android:id="@+id/button_done"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/button_clcik_efferct_blue_white_no_round"
android:text="DONE"
android:textColor="@drawable/button_clcik_efferct_text_white_blue"
android:textStyle="bold"/>
JAVA
@BindView(R.id.button_done) Button buttonDone;
@OnClick(R.id.button_done)
public void onClick(View view) {
switch (view.getId()) {
case R.id.button_done:
try {
PreferenceManager.getInstance().setLocationName(localityName);
} catch (Exception e) {
e.printStackTrace();
}
break;
}
}
答案 0 :(得分:0)
尝试使用butterknife注入库并将插件添加到Android工作室。
插件 - 文件 - &gt;设置 - &gt;插件 - &gt;浏览存储库 - &gt;搜索butterknife并安装。