summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Andruszkiewicz <p.andruszkie@samsung.com>2016-12-21 08:28:05 +0100
committerKangho Hur <kangho.hur@samsung.com>2017-03-24 13:18:58 +0900
commita3d8d373b0638b544c5867e5adaf06aa464c9d22 (patch)
tree5bcc652a4e6c0c50dd45e373b30fcd4c0b38e03c
parent1e35510700e2a3176b373425496637e25e924357 (diff)
downloadxamarin-forms-a3d8d373b0638b544c5867e5adaf06aa464c9d22.tar.gz
xamarin-forms-a3d8d373b0638b544c5867e5adaf06aa464c9d22.tar.bz2
xamarin-forms-a3d8d373b0638b544c5867e5adaf06aa464c9d22.zip
Homogenous mode should be set to false if grouping is enabled
Change-Id: I01327d4c0be6847445c4711d5c4cb6f60f3ba6a9 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/ListView.cs35
1 files changed, 33 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
index d5531dc4..e932a28e 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
@@ -85,10 +85,32 @@ namespace Xamarin.Forms.Platform.Tizen.Native
GenItemClass _headerFooterItemClass = null;
/// <summary>
+ /// Indicates if the list view has uneven rows.
+ /// </summary>
+ bool _hasUnevenRows = false;
+
+ /// <summary>
+ /// Indicates if grouping in the list view is enabled.
+ /// </summary>
+ bool _isGroupingEnabled = false;
+
+ /// <summary>
/// Gets or sets a value indicating whether this instance has grouping enabled.
/// </summary>
/// <value><c>true</c> if this instance has grouping enabled.</value>
- public bool IsGroupingEnabled { get; set; }
+ public bool IsGroupingEnabled
+ {
+ get
+ {
+ return _isGroupingEnabled;
+ }
+
+ set
+ {
+ _isGroupingEnabled = value;
+ UpdateHomogeneousMode();
+ }
+ }
/// <summary>
/// Constructor of ListView native control.
@@ -124,7 +146,8 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <param name="hasUnevenRows">If <c>true</c>, the list will allow uneven sizes for its rows.</param>
public void SetHasUnevenRows(bool hasUnevenRows)
{
- Homogeneous = !hasUnevenRows;
+ _hasUnevenRows = hasUnevenRows;
+ UpdateHomogeneousMode();
UpdateRealizedItems();
}
@@ -597,5 +620,13 @@ namespace Xamarin.Forms.Platform.Tizen.Native
}
return _headerFooterItemClass;
}
+
+ /// <summary>
+ /// Updates the homogeneous mode of the list view.
+ /// </summary>
+ void UpdateHomogeneousMode()
+ {
+ Homogeneous = !_hasUnevenRows && !_isGroupingEnabled;
+ }
}
}