本文整理汇总了C#中Bundle.PutLong方法的典型用法代码示例。如果您正苦于以下问题:C# Bundle.PutLong方法的具体用法?C# Bundle.PutLong怎么用?C# Bundle.PutLong使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bundle
的用法示例。
在下文中一共展示了Bundle.PutLong方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: NewInstance
public static ChangeTimeEntryDurationDialogFragment NewInstance (DateTime stopTime, DateTime startTime)
{
var fragment = new ChangeTimeEntryDurationDialogFragment ();
var args = new Bundle ();
args.PutLong (StopTimeId, stopTime.Ticks);
args.PutLong (StartTimeId, startTime.Ticks);
fragment.Arguments = args;
return fragment;
}
示例2: NewInstance
public static DateFragment NewInstance(int theme, int year, int month,
int day, DateTime minDate, DateTime maxDate)
{
DateFragment t = new DateFragment();
Bundle b = new Bundle();
b.PutInt("theme", theme);
b.PutInt("year", year);
b.PutInt("month", month);
b.PutInt("day", day);
b.PutLong("minDate", minDate.Ticks);
b.PutLong("maxDate", maxDate.Ticks);
t.Arguments = b;
return t;
}
示例3: NewInstance
public static ChangeDateTimeDialogFragment NewInstance (DateTime initialTime, string dialogTitle)
{
var fragment = new ChangeDateTimeDialogFragment ();
var args = new Bundle ();
// Save time without second or millisecond component
// cause neither of this components will be edited.
args.PutLong (InitialTimeArgument, GetTrunkedTime (initialTime).Ticks);
args.PutString (DialogTitleArgument, dialogTitle);
fragment.Arguments = args;
return fragment;
}
示例4: SaveState
// Save game state so that the user does not lose anything
// if the game process is killed while we are in the
// background.
public Bundle SaveState()
{
Bundle map = new Bundle ();
map.PutIntArray ("mAppleList", Coordinate.ListToArray (apples));
map.PutInt ("mDirection", (int)mDirection);
map.PutInt ("mNextDirection", (int)mNextDirection);
map.PutInt ("mMoveDelay", mMoveDelay);
map.PutLong ("mScore", mScore);
map.PutIntArray ("mSnakeTrail", Coordinate.ListToArray (snake_trail));
return map;
}
示例5: OnSaveInstanceState
protected override void OnSaveInstanceState (Bundle outState)
{
outState.PutIntArray (PageStackExtra, pageStack.ToArray ());
outState.PutLong (LastSyncArgument, lastSyncInMillis);
outState.PutInt (LastSyncResultArgument, syncStatus);
base.OnSaveInstanceState (outState);
}
示例6: NewInstance
public static SlideDateTimeDialogFragment NewInstance(SlideDateTimeListener listener,
DateTime initialDate, DateTime minDate, DateTime maxDate, bool isClientSpecified24HourTime,
bool is24HourTime, int theme, int indicatorColor)
{
mListener = listener;
SlideDateTimeDialogFragment dialogFragment = new SlideDateTimeDialogFragment();
Bundle bundle = new Bundle();
bundle.PutLong("initialDate", initialDate.Ticks);
bundle.PutLong("minDate", minDate.Ticks);
bundle.PutLong("maxDate", maxDate.Ticks);
bundle.PutBoolean("isClientSpecified24HourTime", isClientSpecified24HourTime);
bundle.PutBoolean("is24HourTime", is24HourTime);
bundle.PutInt("theme", theme);
bundle.PutInt("indicatorColor", indicatorColor);
dialogFragment.Arguments = bundle;
return dialogFragment;
}
示例7: NewInstance
public static EntityViewFragment NewInstance(BankEntity bankEntity, bool IsRelativeToUserLocation)
{
EntityViewFragment entityViewFragment = new EntityViewFragment ();
Bundle args = new Bundle();
args.PutDouble ("Distance", bankEntity.Distance);
args.PutString ("Name", bankEntity.Name);
args.PutDouble ("Latitude", bankEntity.Latitude);
args.PutDouble ("Longitude", bankEntity.Longitude);
args.PutString ("LocationType", bankEntity.LocationType);
args.PutLong ("LocationId", bankEntity.LocationId);
args.PutLong ("Id", bankEntity.Id);
args.PutString ("Brand", bankEntity.BrandName ());
args.PutString ("Address", bankEntity.Address);
args.PutBoolean ("IsRelativeToUserLocation", IsRelativeToUserLocation);
entityViewFragment.Arguments = args;
return entityViewFragment;
}
示例8: OnSaveInstanceState
protected override void OnSaveInstanceState(Bundle outState)
{
outState.PutInt("steps", steps);
outState.PutFloat("calories", calories);
outState.PutFloat("speed", speed);
outState.PutFloat("distance", distance);
outState.PutLong("time", chrono.Base);
outState.PutBoolean("run", run);
base.OnSaveInstanceState(outState);
}
示例9: SaveState
public Bundle SaveState()
{
Bundle map = new Bundle ();
map.PutIntArray ("mCheeseList", Coordenadas.ListToArray (apples));
map.PutInt ("mDireccion", (int)mDireccion);
map.PutInt ("mSig_Direccion", (int)mSig_Direccion);
map.PutInt ("mMoveDelay", mMoveDelay);
map.PutLong ("mPuntos", mPuntos);
map.PutIntArray ("mSnakeTrail", Coordenadas.ListToArray (snake_campo));
return map;
}