Skip to content

Commit

Permalink
trying to fix navbar show/hide
Browse files Browse the repository at this point in the history
  • Loading branch information
Squadzone committed Mar 4, 2013
1 parent 902e5c8 commit 87be4e5
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 143 deletions.
2 changes: 1 addition & 1 deletion core/java/android/view/View.java
Expand Up @@ -9786,7 +9786,7 @@ public void setOverScrollMode(int overScrollMode) {
* A Property wrapper around the <code>alpha</code> functionality handled by the
* {@link View#setAlpha(float)} and {@link View#getAlpha()} methods.
*/
static Property<View, Float> ALPHA = new FloatProperty<View>("alpha") {
public static Property<View, Float> ALPHA = new FloatProperty<View>("alpha") {
@Override
public void setValue(View object, float value) {
object.setAlpha(value);
Expand Down

0 comments on commit 87be4e5

Please sign in to comment.