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
My solution like this.
Defined a view extends ImageView called ToggleExpandableMenuButton,There is an interface in it.
public interface ToggleListener {
void toggle();
}
Override the method performClick(){
if (listener != null) {
listener.toggle();
}
}
And set a ToggleListener on your ToggleExpandableMenuBotton in your adapter.
If I don't talk it clear ,download the attachment and change the suffix to '.java' or leave ur email here.
my expandable_button is a image arrow, when i click it , i want to change the it and set another arrow.
like: < to >,
or : ^ to > , etc
how can i do ?
The text was updated successfully, but these errors were encountered: