如何在androidplot的标题中上标?

时间:2015-05-18 05:19:33

标签: android android-xml androidplot

我试图在androidplot的标题中标注一个数字,如下所示:

字符串文件:

<string name="plot_title_3m">stuff per m<sup>3</sup></string>

xml文件:

androidPlot.title="@string/plot_title_3m"

但它根本没有上标,这个数字是正常的造型。我也尝试过使用

<string name="plot_title_3m">stuff per m&lt;sup&gt;3&lt;/sup&gt;</string>

但没有骰子,它实际上显示标题中的sup标签

也试过这个

<string name="plot_title_3m">stuff per m<small><sup>3</sup></small></string>

并且实际上发现了&#39;小&#39;标签不起作用......

1 个答案:

答案 0 :(得分:0)

您可以使用HTML tags to achieve this。更确切地说,您需要在输入文本上使用Spans来实现TextView上的这种外观,但我们有a friendly neighborhood helper class将一些常见的HTML标记转换为跨度。

E.g:

div {
	box-sizing: border-box;
}


.eqWrap {
	display: flex;
}

.year{
	background: red;
}
.month {
	background: blue;
}
.day {
	background: green;
}

.month, .day, .year {
	border: 1px solid gray;
	text-align:center;
	
}
.equalHW {
	height:20px;
	flex: 1;
}