当前位置: 首页>>代码示例>>C#>>正文


C# Bundle.PutLong方法代码示例

本文整理汇总了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;
        }
开发者ID:VDBBjorn,项目名称:toggl_mobile,代码行数:11,代码来源:ChangeTimeEntryDurationDialogFragment.cs

示例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;
        }
开发者ID:meirongIn83,项目名称:SlideDatetimePickerCSharp,代码行数:16,代码来源:DateFragment.cs

示例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;
        }
开发者ID:VDBBjorn,项目名称:toggl_mobile,代码行数:14,代码来源:ChangeDateTimeDialogFragment.cs

示例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;
        }
开发者ID:4ndr01d,项目名称:monodroid-samples,代码行数:16,代码来源:SnakeView.cs

示例5: OnSaveInstanceState

 protected override void OnSaveInstanceState (Bundle outState)
 {
     outState.PutIntArray (PageStackExtra, pageStack.ToArray ());
     outState.PutLong (LastSyncArgument, lastSyncInMillis);
     outState.PutInt (LastSyncResultArgument, syncStatus);
     base.OnSaveInstanceState (outState);
 }
开发者ID:ZhangLeiCharles,项目名称:mobile,代码行数:7,代码来源:MainDrawerActivity.cs

示例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;
        }
开发者ID:meirongIn83,项目名称:SlideDatetimePickerCSharp,代码行数:20,代码来源:SlideDateTimeDialogFragment.cs

示例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;
        }
开发者ID:priyaaank,项目名称:XamarinMapsPoc,代码行数:18,代码来源:EnityViewPageAdapter.cs

示例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);
 }
开发者ID:236422,项目名称:Krokomierz,代码行数:10,代码来源:PedometerActivity.cs

示例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;
        }
开发者ID:Hackemate,项目名称:Snake,代码行数:13,代码来源:GameView.cs


注:本文中的Bundle.PutLong方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。