Questions tagged «text»

文本是一系列字符,通常用于表示一条连贯的信息。

7
如何在Android的TextView中将两行文本居中?
我想让它看起来像这样: | two | | lines | 这是当前的布局,根本无法使用。 <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="two\nlines" android:layout_gravity="center_vertical" android:layout_centerInParent="true"/> </RelativeLayout> 任何的想法?谢谢!

5
Data.Text与字符串
尽管Haskell社区的普遍观点似乎是总是使用Text代替总是更好String,但是大多数可维护库的API仍然是面向的这一事实使String我感到困惑。另一方面,有一些值得注意的项目,这些项目将全部视为String错误,并且提供了Prelude-String面向功能的所有实例都替换为Text-counterparts的实例。 因此,String除了向后兼容和标准的Prelude兼容以及“切换机制”之外,人们是否有理由继续编写面向对象的API?与之Text相比,是否还有其他缺点String? 特别是,我对此很感兴趣,因为我正在设计一个库并试图决定使用哪种类型来表达错误消息。
78 string  haskell  text 

1
如何将颜色应用于SVG文本元素
好吧...我要疯了。我已经开始尝试SVG。使用SVG并将CSS类应用于它就像是一种魅力。我只是不知道自己在做什么错,但我只是无法让该类在svg文本元素上工作。我已经将其完全剥离,这就是我得到的: <!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>Playground</title> </head> <body> <style type="text/css"> .mainsvg { height: 320px; border: 1px solid red; width: 400px; } .caption { color: yellow; } </style> <h2>SVG - Sandbox</h2> <div> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="mainsvg"> <text x="65" y="40" class="caption">Fact</text> </svg> </div> </body> </html> 根据http://www.w3.org/TR/SVG/styling.html#ClassAttribute,这应该有效... 关于更改内容或替代方法的任何提示/技巧?
78 html  css  text  svg 

8
Android:Spinner小部件的文本颜色属性隐藏在哪里?
从下拉列表中选择一个项目后,我正在尝试更改微调按钮中显示的单个项目的文本颜色。我已经在Android SDK中仔细阅读了themes.xml和styles.xml一个小时,而且似乎找不到Spinner从何处获取颜色值。 为了澄清起见,我不是在尝试更改下拉菜单项的颜色,而是在没有下拉菜单时尝试更改微调框显示的文本的颜色。我想您可以将其称为微调框的“按钮”文本。
77 android  text  colors  spinner 



3
CSS无文字换行
请参阅下面引用的代码http://jsbin.com/eveqe3/edit。 我需要以这样一种方式在项目div中显示文本,即文本仅出现在具有指定宽度的绿色框中,其余行需要隐藏。有什么建议请... <style> #container{ width : 220px; } .item{ float:left; border: 1px solid #0a0; width: 100px; height: 12px; padding 2px; margin: 0px 2px; } .clearfix{ clear: both; } </style> </head> <body> <div id="container"> <div class="item"> A very loooooooooooooooooooooong text </div> <div class="item"> Another looooooooooooooooooooong text </div> <div class="clearfix"> </div> </div> …
76 html  css  text 

11
如何在连字符(-)等特殊字符后打断单词
给定一个相对简单的CSS: div { width: 150px; } <div> 12333-2333-233-23339392-332332323 </div> 运行代码段隐藏结果展开摘要 怎样让这个字符串停留约束到width 的150,和包装上的一个新的线连字符?
76 html  css  text 

9
给定背景色的良好文本前景色
我正在绘制一个颜色选择按钮,并且正在寻找一个简单的公式来为RGB中的给定背景色获得良好的文本颜色(前景)。 一个简单的尝试就是只取补色,但这会为纯蓝色或纯红色之类的颜色产生奇怪的外观。 有什么众所周知的东西吗? 如果很重要,我正在使用QT。

3
protobuf文本格式是什么样的?
Google协议缓冲区不仅可以以二进制格式序列化,还可以以text序列化。但是,我很难找到此类文本的示例。它会是什么样子? 预期答案:一个示例,涵盖protobuf IDL / proto文件允许的所有功能,包括文本格式的protobuf样本包。

12
如何分割文件并在每一部分中保持第一行?
给定:一个大文本数据文件(例如CSV格式),第一行带有“特殊”行(例如字段名称)。 想要的:与coreutilssplit -l命令等效,但另外的要求是,原始文件的标题行必须出现在每个结果片段的开头。 我猜想会合split而head为之吗?
73 linux  bash  file  shell  text 


1
Postgres:将varchar转换为文本
我搞砸了,并创建了一个列作为varchar(255),在那里不再足够了。我读过varchar相对于Postgres上的文本没有性能上的好处,因此希望以一种安全的方式将varchar转换为text列,以保留数据。 对我来说最好的方法是什么?

4
仅从此元素提取文本,而不从其子元素提取文本
我只想从汤中最上面的元素中提取文本;但是汤.text也会给出所有子元素的文本: 我有 import BeautifulSoup soup=BeautifulSoup.BeautifulSoup('<html>yes<b>no</b></html>') print soup.text 输出为yesno。我只想“是”。 实现此目标的最佳方法是什么? 编辑:我也想yes在解析' <html><b>no</b>yes</html>'时输出。

6
在Mac OS X上将代码粘贴到终端窗口到vim中
当我将代码粘贴到Mac OS X终端窗口中的vim中时,它会将每行缩进。每行添加一个缩进,因此文本看起来像这样... "ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa …
69 macos  vim  text  terminal 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.