Tag: textcolor

高亮显示UIButton标题颜色 – 如何closures它?

我创build了一个button。 标题的颜色默认为黑色。 但是当我按下它的时候,颜色会变成蓝色,而且不会再变回来,这是怎么发生的? 谁能告诉我为什么? 我希望button的标题始终保持黑色。 我怎样才能做到这一点? 我努力了 [button setTitleColor:[UIColor darkTextColor] forState:UIControlStateHighlighted]; [button setTitleColor:[UIColor darkTextColor] forState:UIControlStateSelected]; 但是没有效果。 当我在我的代码中添加这个,看起来button的标题总是蓝色的。 代码如下。 UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button setFrame:CGRectMake(20, 360, 280, 44)]; [button setTitle:NSLocalizedString(@"Continue", @"Label: TextLabel in Continue button") forState:UIControlStateNormal]; button.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20.0f]; button.titleLabel.textColor = [UIColor darkTextColor]; button.titleLabel.shadowColor = [UIColor blackColor]; button.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleBottomMargin|UIViewAutoresizingFlexibleWidth; [self.view addSubview:button]; [button […]

按下时更改单个ClickableSpan的文本颜色,而不会影响同一TextView中的其他ClickableSpans

我有一个TextView与多个ClickableSpans在其中。 当按下ClickableSpan时,我希望它改变文本的颜色。 我曾尝试设置一个颜色状态列表作为TextView的textColorLink属性。 这不会产生所需的结果,因为当用户单击TextView上的任何位置时,这会导致所有跨度更改颜色。 有趣的是,使用textColorHighlight来改变背景颜色的工作原理如下:点击一个跨度只改变该跨度的背景颜色,并在TextView的其他任何地方单击不做任何事情。 我也尝试设置与ClickableSpans具有相同边界的ForegroundColorSpans,其中我将如上所述的相同颜色状态列表作为颜色资源。 这也不pipe用。 跨度始终保持颜色状态列表中的默认状态的颜色,从不进入按下的状态。 有谁知道如何做到这一点? 这是我使用的颜色状态列表: <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:color="@color/pressed_color"/> <item android:color="@color/normal_color"/> </selector>

如何在Swift中设置UILabel的textColor

当我尝试使用代码将UILabel的颜色设置为另一个UILabel的颜色时 myLabel.textColor = otherLabel.textColor 它不会改变颜色。 但是,当我使用这个代码时, myLabel.textColor = UIColor.redColor() 它正确地改变颜色。 第一行有什么问题?

使UILabel的文字变粗

我想让UILabel的文字变粗 infoLabel=[[UILabel alloc]initWithFrame:CGRectMake(90,150, 200, 30)]; [infoLabel setText:@"Drag 14 more Flavors"]; [infoLabel setBackgroundColor:[UIColor clearColor]]; [infoLabel setFont:[UIFont fontWithName:@"Arial" size:16]]; [infoLabel setTextColor:[UIColor colorWithRed:193.0/255 green:27.0/255 blue:23.0/255 alpha:1 ]];

如何使用setTextColor(ColorsStateList颜色)设置TextColor

我需要改变状态改变时的文本颜色(按下,焦点)… 如何使用ColorsStateList设置TextView的文本颜色? 编辑,解决: textView.setTextColor (new ColorStateList ( new int [] [] { new int [] {android.R.attr.state_pressed}, new int [] {android.R.attr.state_focused}, new int [] {} }, new int [] { Color.rgb (255, 128, 192), Color.rgb (100, 200, 192), Color.White } )); 单击时更改TextView的背景颜色

在一个标签中使用多种字体颜色

有没有办法在iOS中的单个标签中使用两种甚至三种字体颜色? 如果以“你好,你好吗”为例,“你好”是蓝色的,“你好”是绿色的? 这是可能的,它似乎比创build多个标签更容易?

如何更改Android 5中的默认对话框button文本颜色

我的应用程序中有很多提醒对话框。 这是一个默认的布局,但我正在向对话框添加正面和负面的button。 所以button得到Android 5(绿色)的默认文本颜色。 我试图改变它没有成功。 任何想法如何改变文字颜色? 我的自定义对话框 public class MyCustomDialog extends AlertDialog.Builder { public MyCustomDialog(Context context,String title,String message) { super(context); LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE ); View viewDialog = inflater.inflate(R.layout.dialog_simple, null, false); TextView titleTextView = (TextView)viewDialog.findViewById(R.id.title); titleTextView.setText(title); TextView messageTextView = (TextView)viewDialog.findViewById(R.id.message); messageTextView.setText(message); this.setCancelable(false); this.setView(viewDialog); } } 创build对话框: MyCustomDialog builder = new MyCustomDialog(getActivity(), "Try Again", […]

UILabel与两种不同颜色的文字

我想在UILabel显示这样的string: 有5个结果。 5号的颜色是红色的,其余的是黑色的。 我如何在代码中做到这一点?

更改NumberPicker的文本颜色

我已经查看了大多数所有的线程,没有提供一个有效的答案。 样式NumberPicker不起作用(按照此线程: NumberPicker textColour ) 将numberPicker上的style属性设置为具有颜色项目的样式也没有任何效果。 在numberPicker XML上设置textColor属性也不做任何事情。 最近我得到这个是使用numberPicker将其getChildAt()强制转换为EditText,然后在该EditText上执行setColor(),但只是在初始化时更改子对象的颜色,然后每次从在其上; 不是我正在寻找的。 任何帮助? 谢谢

C#控制台应用程序中的橙色文字颜色?

我刚刚完成了一个项目的C#控制台应用程序代码,并希望为我的字体添加一些颜色。 我很想能够使用橙色的颜色。 有没有办法做到这一点? 这是我以前用来改变颜色的代码,但它不提供橙色: Console.ForegroundColor = ConsoleColor.Magenta(and so on); 有没有办法可能插入一个hex值的颜色或类似的东西?