You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I put this progressView in a generic layout (relative or linear doesn't matter) the click listener on parent won't be raised.
I lost a lot of time to understand it, so i want to help someone in same situation.
I had to set same clickListener both to parent and setOnProgressClickListener;
If I put this progressView in a generic layout (relative or linear doesn't matter) the click listener on parent won't be raised.
I lost a lot of time to understand it, so i want to help someone in same situation.
I had to set same clickListener both to parent and setOnProgressClickListener;
`
parentView.setOnClickListener(new View.OnClickListener() {
@OverRide
public void onClick(final View v)
{
execEvent();
}
});
progressViewLibrary.setOnProgressClickListener(new OnProgressClickListener() {
@OverRide
public void onClickProgress(boolean highlighting)
{
execEvent();
}
});
`
The text was updated successfully, but these errors were encountered: