这是 XML 文件代码片段:
<ImageView
android:id="@+id/ivh4c5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:clickable="true"
android:src="@drawable/logoutmenu" />
这是代码片段:
logOut.setOnClickListener( new View.OnClickListener() {
@Override
public void onClick(View v)
{
final SharedPreferences prefs = getApplicationContext().getSharedPreferences("ProfileName", MODE_PRIVATE);
Editor editor = prefs.edit();
editor.clear();
editor.commit();
finish();
}});
结果:
单击注销图像应用程序必须注销(仅在第一次)。
问题:
单击注销图像在第一次单击时没有响应,我必须再次单击它才能从应用程序中注销。
请提供更正的代码。