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


C# Bundle.getString方法代码示例

本文整理汇总了C#中Bundle.getString方法的典型用法代码示例。如果您正苦于以下问题:C# Bundle.getString方法的具体用法?C# Bundle.getString怎么用?C# Bundle.getString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Bundle的用法示例。


在下文中一共展示了Bundle.getString方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: onCreate

		public override void onCreate(Bundle savedInstanceState)
		{
			base.onCreate(savedInstanceState);
			if (savedInstanceState != null)
			{
				mDeviceId = savedInstanceState.getString("deviceId");
				mSelectedType = savedInstanceState.getInt("selectedType");
			}
		}
开发者ID:moljac,项目名称:Samples.Data.Porting,代码行数:9,代码来源:DevicePicker.cs

示例2: MusicPlayerState

			/// <summary>
			/// Constructs <seealso cref="MusicPlayerState"/> from bundle.
			/// </summary>
			/// <param name="savedState"> the bundle containing the saved mState </param>
			internal MusicPlayerState(Bundle savedState)
			{

				mMediaUri = Uri.parse(savedState.getString(MEDIA_URI));
				mAlbumArtUri = Uri.parse(savedState.getString(COVER_URI));
				mTitle = savedState.getString(TITLE);
				mArtist = savedState.getString(ARTIST);
				mMimeType = savedState.getString(MIMETYPE);
				mPlayback = Enum.Parse(typeof(PlayerController.PlayerState), savedState.getString(PLAYER_STATE));
				mPosition = savedState.getInt(POSITION);
				mDuration = savedState.getInt(DURATION);
				mMute = savedState.getInt(MUTE) == 1;
				mDeviceId = savedState.getString(DEVICE_ID);
			}
开发者ID:moljac,项目名称:Samples.Data.Porting,代码行数:18,代码来源:MusicPlayerActivity.cs

示例3: VideoPlayerState

			/// <summary>
			/// Constructs <seealso cref="VideoPlayerState"/> from bundle.
			/// </summary>
			/// <param name="savedState"> the bundle containing the saved mState </param>
			internal VideoPlayerState(Bundle savedState)
			{
				mMediaUri = Uri.parse(savedState.getString(MEDIA_URI));
				mSubtitlesUri = Uri.parse(savedState.getString(SUBTITLES_URI));
				mTitle = savedState.getString(TITLE);
				mMimeType = savedState.getString(MIME_TYPE);
				mPlayback = Enum.Parse(typeof(PlayerController.PlayerState), savedState.getString(PLAYER_STATE));
				mPosition = savedState.getInt(POSITION);
				mDuration = savedState.getInt(DURATION);
				mMute = savedState.getInt(MUTE) == 1;
				mDeviceId = savedState.getString(DEVICE_ID);
			}
开发者ID:moljac,项目名称:Samples.Data.Porting,代码行数:16,代码来源:VideoPlayerActivity.cs

示例4: getIcon

	  /// <summary>
	  /// Get drawable resource identifier from application meta-data. </summary>
	  /// <param name="appMetaData"> application meta-data. </param>
	  /// <param name="metaName"> meta-data key corresponding to the drawable resource name. </param>
	  /// <returns> drawable resource identifier or 0 if not found. </returns>
	  private int getIcon(Bundle appMetaData, string metaName)
	  {
		/* Get drawable resource identifier from its name */
		string iconName = appMetaData.getString(metaName);
		if (iconName != null)
		{
		  return EngagementResourcesUtils.getDrawableId(mContext, iconName);
		}
		return 0;
	  }
开发者ID:moljac,项目名称:Samples.Data.Porting,代码行数:15,代码来源:EngagementDefaultNotifier.cs


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