summaryrefslogtreecommitdiff
path: root/AndroidNative
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2017-02-06 15:16:54 +0100
committerStephane Delcroix <stephane@delcroix.org>2017-02-06 15:16:54 +0100
commitfc7d556848e731902d096953c9b4fb28a2466e6b (patch)
treec3c9f63f93bcf77af253aa027acc9648d2ffa7dd /AndroidNative
parent28237b7b27ef318b2c811e9829c2442613c42feb (diff)
downloadxamarin-forms-fc7d556848e731902d096953c9b4fb28a2466e6b.tar.gz
xamarin-forms-fc7d556848e731902d096953c9b4fb28a2466e6b.tar.bz2
xamarin-forms-fc7d556848e731902d096953c9b4fb28a2466e6b.zip
[*] ScaleX and ScaleY
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);
}