本文整理汇总了C#中Bundle.PutIntArray方法的典型用法代码示例。如果您正苦于以下问题:C# Bundle.PutIntArray方法的具体用法?C# Bundle.PutIntArray怎么用?C# Bundle.PutIntArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bundle
的用法示例。
在下文中一共展示了Bundle.PutIntArray方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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;
}
示例2: OnSaveInstanceState
protected override void OnSaveInstanceState (Bundle outState)
{
outState.PutIntArray (PageStackExtra, pageStack.ToArray ());
outState.PutLong (LastSyncArgument, lastSyncInMillis);
outState.PutInt (LastSyncResultArgument, syncStatus);
base.OnSaveInstanceState (outState);
}
示例3: 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;
}
示例4: OnSaveInstanceState
protected override void OnSaveInstanceState(Bundle outState)
{
outState.PutIntArray(KEY_PASSCODE_ENTERED, _passcodeEntered);
outState.PutInt(KEY_PASSCODE_COUNT, _numbersEntered);
base.OnSaveInstanceState(outState);
}
示例5: OnSaveInstanceState
protected override void OnSaveInstanceState (Bundle outState)
{
outState.PutIntArray (PageStackExtra, pageStack.ToArray ());
base.OnSaveInstanceState (outState);
}