我从 xml 膨胀视图并将其添加到布局中:
View header = LayoutInflater.from(this).inflate(R.layout.lenta_parent_item,(FrameLayout)findViewById(R.id.frameContent), false);
header.setOnClickListener(new OnClickListener() {
public void onClick(View header) {
...some code
}
});
主要布局xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/frameContent">
<view ....
</FrameLayout>
当我运行我的应用程序时,我可以看到这个视图(“标题”),但是当我点击它时没有任何反应。事件只是没有被触发。我该怎么做才能为我的视图获取点击事件?