Skip to content

Commit

Permalink
More verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
bffcorreia committed Jan 18, 2016
1 parent 8b06b6b commit 41f122c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fole/src/main/java/io/github/bffcorreia/fole/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void addOnExpandableViewClickListener() {
}

private void onActionPerformed() {
Log.i("Fole", "Clicked");
Log.i("Fole", "Clicked: " + this.isTextViewExpanded);
this.fole.textView.setText(this.text);

if (this.isTextViewExpanded) {
Expand Down Expand Up @@ -107,10 +107,12 @@ private void handleViewState() {
expandableView.setVisibility(View.VISIBLE);
isTextViewExpanded = false;
addActionInfoIfCallbackIsSet(false);
Log.i("Fole", "isTextViewExpanded1: " + isTextViewExpanded);
} else {
Log.i("Fole", "exapaaand");
expandableView.setVisibility(View.GONE);
isTextViewExpanded = true;
Log.i("Fole", "isTextViewExpanded2: " + isTextViewExpanded);
}

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
Expand Down

0 comments on commit 41f122c

Please # to comment.