我有一個包含片段轉換幀佈局的活動。框架佈局正在加載一個片段,現在我想在幀佈局上設置點擊監聽器。但點擊偵聽器工作正常。OnClickListener監聽器在幀佈局上不起作用
這裏是包含片段
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".FragmentActivity"
tools:showIn="@layout/app_bar_balance"
android:id="@+id/layout">
<FrameLayout
android:name="com.dd.cotech.Fragments.HomeFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragmentWindow"
tools:layout="@layout/fragment_home" />
這裏的框架佈局佈局聽者編碼
findViewById(R.id.fragmentWindow).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(FragmentActivity.this, "I am click", Toast.LENGTH_SHORT).show();
}
});
任何幫助嗎?
你能解釋更多關於你的問題嗎 –
但是點擊偵聽器工作正常 - 那麼問題是什麼? –
對於輸入錯誤感到抱歉.click監聽器根本無法正常工作。它不會捕獲單擊事件。 –