summaryrefslogtreecommitdiff
path: root/AndroidNative
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidNative')
-rw-r--r--AndroidNative/FormsViewGroup/src/com/xamarin/forms/platform/android/FormsViewGroup.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/AndroidNative/FormsViewGroup/src/com/xamarin/forms/platform/android/FormsViewGroup.java b/AndroidNative/FormsViewGroup/src/com/xamarin/forms/platform/android/FormsViewGroup.java
index 2168f323..b9ce8e80 100644
--- a/AndroidNative/FormsViewGroup/src/com/xamarin/forms/platform/android/FormsViewGroup.java
+++ b/AndroidNative/FormsViewGroup/src/com/xamarin/forms/platform/android/FormsViewGroup.java
@@ -72,7 +72,8 @@ public class FormsViewGroup extends ViewGroup {
float rotation,
float rotationX,
float rotationY,
- float scale,
+ float scaleX,
+ float scaleY
float translationX,
float translationY){
setPivotX (pivotX);
@@ -88,8 +89,8 @@ public class FormsViewGroup extends ViewGroup {
setRotation (rotation);
setRotationX (rotationX);
setRotationY (rotationY);
- setScaleX (scale);
- setScaleY (scale);
+ setScaleX (scaleX);
+ setScaleY (sclaeY);
setTranslationX (translationX);
setTranslationY (translationY);
}