-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from AAkira/v1.4.0
V1.4.0
- Loading branch information
Showing
10 changed files
with
135 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
library/src/androidTest/java/jp/android/aakira/expandablelayout/ApplicationTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...ary/src/main/java/com/github/aakira/expandablelayout/ExpandableLayoutListenerAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package com.github.aakira.expandablelayout; | ||
|
||
public abstract class ExpandableLayoutListenerAdapter implements ExpandableLayoutListener { | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
@Override | ||
public void onAnimationStart() { | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public void onAnimationEnd() { | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public void onPreOpen() { | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public void onPreClose() { | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public void onOpened() { | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public void onClosed() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters