FadingActionBar icon indicating copy to clipboard operation
FadingActionBar copied to clipboard

ImageView onClick listener in headerLayout not working.

Open manaqvi opened this issue 9 years ago • 1 comments

I have inflated a view in fragment like this:

@Override
public void onAttach(Activity activity) {
    super.onAttach(activity);
    mFadingHelper = new FadingActionBarHelper()
            .actionBarBackground(R.drawable.ab_background_light)
            .headerLayout(R.layout.trailer_header)
            .contentLayout(R.layout.fragment_movie_detail_tab)
            .lightActionBar(true);
    mFadingHelper.initActionBar(activity);
}

How do i able to implement the clickListener on header layout or any other views in header?

manaqvi avatar Mar 24 '15 11:03 manaqvi

Solution: https://github.com/deronbrown/FadingActionBar/commit/9439d5a866b8b341fbf00f6d14d290c602fb48ed

manaqvi avatar Apr 21 '15 11:04 manaqvi