我有一个布局,里面包含其他布局。我试图在包含的布局中的ImageView上设置onClikeListener,但它不起作用。但是当我设置背景可绘制时,它可以工作。我不知道为什么。这是我的代码:
//custom header
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sticky_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/iv_header_close"
android:layout_width="60dp"
android:layout_height="55dp"
android:background="@drawable/big_cross_icon" />
</LinearLayout>
//activity_detail
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f1f2f6">
<include
android:id="@+id/header"
layout="@layout/custom_header"/>
</RelativeLayout>
//in Activity
View header = findViewById(R.id.header);
iv_header_close = (ImageView)header.findViewById(R.id.iv_header_close);
iv_header_close.setBackgroundDrawable(getResources().getDrawable(R.drawable.big_edit_icon));
iv_header_close.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish(); //not working
}
});
我想知道为什么我可以在包含的布局中访问子视图但不能设置OnClickListner。非常感谢你:))
答案 0 :(得分:1)
像这样创建iv_header_close
:
ImageView iv_header_close = (ImageView) findViewById(R.id.iv_header_close);
而不是致电finish()
尝试致电YourActivity.this.finish()
发生的事情是,在您的图片浏览的onClick
内,您无法访问自己的活动,因此如果您需要,您必须使用YourActivity.this
访问您的活动访问您的活动方法。