forked from Clancey/MonoDroid.Dialog
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathViewElement.cs
37 lines (33 loc) · 1.15 KB
/
ViewElement.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Globalization;
using Android.Content;
using Android.Util;
using Android.Views;
namespace Android.Dialog
{
public class ViewElement : Element
{
public ViewElement(int layout)
: base(string.Empty, layout)
{
}
public override View GetView(Context context, View convertView, ViewGroup parent)
{
var view = convertView ?? LayoutInflater.FromContext(context).Inflate(LayoutId, parent, false);
if (view == null)
{
Log.Error("Android.Dialog", "ViewElement: Failed to load resource: " + LayoutId.ToString(CultureInfo.InvariantCulture));
}
else if (Populate != null)
Populate(view);
return view;
}
/// <summary>
/// Gets or sets the <see cref="Action{T}"/> that populates the <see cref="View"/> that was inflated from the Layout ID passed in on the constructor.
/// </summary>
/// <value>
/// The <see cref="Action{T}"/> that hydrates the inflated View with data.
/// </value>
public Action<View> Populate { get; set; }
}
}