我從XML充氣視圖並把它添加到佈局:如何獲得onclick事件上放大的視圖
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>
當我跑我的應用程序,我可以看到這個視圖(「標題」),但是當我點擊它時沒有任何反應。事件沒有被解僱。我能做些什麼來獲得我的觀點的點擊事件?
視圖如何能夠獲得事件,如果沒有父母? –