You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
453 B
24 lines
453 B
using EnhancedUI.EnhancedScroller;
|
|
|
|
public interface IOnRecieveIntent
|
|
{
|
|
void OnRecieveIntent(object intent);
|
|
}
|
|
|
|
/// <summary>
|
|
/// This is the view of our cell which handles how the cell looks.
|
|
/// </summary>
|
|
public class EScrCell : EnhancedScrollerCellView
|
|
{
|
|
protected int iType = -1;
|
|
protected int itemID = -1;
|
|
|
|
public void SetType(int itype)
|
|
{
|
|
iType = itype;
|
|
}
|
|
|
|
public virtual void SetData(int itemid)
|
|
{
|
|
}
|
|
}
|