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


C# IAttributeSet.GetAttributeResourceValue方法代码示例

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


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

示例1: Initialize

        private void Initialize(IAttributeSet attrs)
        {
            TypedArray a = Context.ObtainStyledAttributes(attrs, Resource.Styleable.TextWithHelp);

            string helpText = a.GetString(Resource.Styleable.TextWithHelp_help_text);

            const string xmlns = "http://schemas.android.com/apk/res/android";
            string text = Context.GetString(attrs.GetAttributeResourceValue(xmlns, "text", Resource.String.ellipsis));
            Initialize(text, helpText);
        }
开发者ID:pythe,项目名称:wristpass,代码行数:10,代码来源:TextWithHelp.cs

示例2: SeekBarPreference

        public SeekBarPreference(Context context, IAttributeSet attrs)
            : base(context, attrs)
        {
            _progress = 0;
            _minimumValue = attrs.GetAttributeIntValue(_applicationNamespace, "minValue", 0);
            _defaultValue = attrs.GetAttributeIntValue(_applicationNamespace, "defaultValue", 0) - _minimumValue;
            _maximumValue = attrs.GetAttributeIntValue(_applicationNamespace, "maxValue", 100) - _minimumValue;

            int suffixResourceId = attrs.GetAttributeResourceValue(_applicationNamespace, "suffix", 0);

            if (suffixResourceId > 0)
                _suffix = " " + context.Resources.GetString(suffixResourceId);

            DialogLayoutResource = Resource.Layout.TimeoutDialogPreference;
        }
开发者ID:jorik041,项目名称:CSharpToGo,代码行数:15,代码来源:SeekBarPreference.cs

示例3: HelpButton

        public HelpButton(Context context, IAttributeSet attrs) : base(context, attrs)
        {
            SetGravity(GravityFlags.Center);

            img = new ImageView(context);
            img.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WrapContent, ViewGroup.LayoutParams.WrapContent);

            int sourceResourceId = attrs.GetAttributeResourceValue("http://schemas.android.com/apk/res/android", "src", 0);

            img.SetImageResource(sourceResourceId);

            Click += (sender, args) =>
            {
                if (HelpClickListener != null)
                {
                    HelpClickListener(isHelp);
                }
            };

            AddView(img);
        }
开发者ID:TheJaniceTong,项目名称:Judo-Xamarin,代码行数:21,代码来源:HelpButton.cs

示例4: ProcessAttributeSets

 void ProcessAttributeSets(IAttributeSet attrs)
 {
     var resID = attrs.GetAttributeResourceValue (null, "description", -1);
     var val = resID == -1 ?
         attrs.GetAttributeValue (null, "description")
         : Context.Resources.GetString (resID);
     desc = (val ?? string.Empty).ToUpper ();
 }
开发者ID:modulexcite,项目名称:bikr,代码行数:8,代码来源:CircleBadge.cs


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