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


C# Resources.GetDrawable方法代码示例

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


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

示例1: GetNormalBackground

 public static Android.Graphics.Drawables.Drawable GetNormalBackground(Resources res, Station station)
 {
     switch (station.UsedActivityType)
     {
         case ActivityType.Dumbbells:
             return res.GetDrawable(Resource.Drawable.bg_dumbbells_normal);
         case ActivityType.Rowing:
             return res.GetDrawable(Resource.Drawable.bg_rowing_normal);
         case ActivityType.Cycling:
             return res.GetDrawable(Resource.Drawable.bg_rowing_normal);
         case ActivityType.BenchPress:
         case ActivityType.Undefined:
         default:
             return res.GetDrawable(Resource.Drawable.bg_normal);
     }
 }
开发者ID:GymJuice,项目名称:BeaconAccessPoint,代码行数:16,代码来源:ImageHelper.cs

示例2: ClingDrawer

        public ClingDrawer(Resources resources, Color showcaseColor)
        {
            this.showcaseColor = showcaseColor;

            PorterDuffXfermode mBlender = new PorterDuffXfermode(PorterDuff.Mode.Clear);
            mEraser = new Paint();
            mEraser.Color = Color.White;
            mEraser.Alpha = 0;
            mEraser.SetXfermode(mBlender);
            mEraser.AntiAlias = true;

            mShowcaseDrawable = resources.GetDrawable(Resource.Drawable.cling_bleached);
            mShowcaseDrawable.SetColorFilter(showcaseColor, PorterDuff.Mode.Multiply);
        }
开发者ID:andyci,项目名称:ShowcaseView,代码行数:14,代码来源:ClingDrawer.cs

示例3: GetDrawable

 public Drawable GetDrawable(Resources res)
 {
     return res.GetDrawable (resID);
 }
开发者ID:BitStab,项目名称:Monodroid-Custom-Auto-Complete,代码行数:4,代码来源:DirectoryEntry.cs

示例4: GetValue

 public override object GetValue(Resources resources, int resourceId, Type memberType)
 {
     return resources.GetDrawable(resourceId);
 }
开发者ID:mattleibow,项目名称:Genetics,代码行数:4,代码来源:DrawableGene.cs

示例5: GetIconDrawable

        public Drawable GetIconDrawable(Resources res, PwIcon icon)
        {
            int resId = Icons.IconToResId (icon);

            Drawable draw;
            if (!_standardIconMap.TryGetValue(resId, out draw))
            {
                draw = res.GetDrawable(resId);
                _standardIconMap[resId] = draw;
            }

            return draw;
        }
开发者ID:pythe,项目名称:wristpass,代码行数:13,代码来源:DrawableFactory.cs

示例6: InitBlank

 private static void InitBlank(Resources res)
 {
     if (_blank == null) {
         _blank = res.GetDrawable (Resource.Drawable.ic99_blank);
         _blankWidth = _blank.IntrinsicWidth;
         _blankHeight = _blank.IntrinsicHeight;
     }
 }
开发者ID:pythe,项目名称:wristpass,代码行数:8,代码来源:DrawableFactory.cs

示例7: GetIconDrawable

 public Drawable GetIconDrawable(Resources res, PwDatabase db, PwIcon icon, PwUuid customIconId)
 {
     return res.GetDrawable(Resource.Drawable.Icon);
 }
开发者ID:pythe,项目名称:wristpass,代码行数:4,代码来源:TestDrawableFactory.cs


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