gpt4 book ai didi

android - 在 TextView 中显示度数符号

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:37:48 25 4
gpt4 key购买 nike

我想在我的 Activity 中使用 TextView 显示 50 度,如下所示

enter image description here

我真的不知道该怎么做,通过谷歌搜索我找到了这个 XML 代码

android:text="50°"

我不知道上面的代码是什么。
任何人都可以向我解释一下它到底是做什么的以及它是如何工作的。

最佳答案

  1. 对于摄氏度使用:

         "\u2103" 

对于华氏度使用:

      "\u2109"

对于没有 c 或 f 的仅度数符号使用:

     "\u00B0"

例如:

      String TemperatureMeasurementStr = String.valueOf(measurement.getTemperature()) + "\u2103";

或者简单的例子:

      String TemperatureMeasurementStr = "37"+ "\u2103";

然后在你的textView中设置字符串

      public TextView temperatureTV;                     
temperatureTV.setText(TemperatureMeasurementStr);
  1. 如果您只想将符号添加到 xml 布局文件 - 只需使用:

       android:text="37\u2103"

例如:

<TextView
android:id="@+id/temperature_measure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/temperature_icon"
android:layout_marginBottom="-5dp"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@+id/temperature_icon"
android:text="37\u2103"
android:textAlignment="center"
android:textSize="50sp"
/>
  1. 如果您希望此符号比数字更小或颜色或样式不同(可以说“正常”,而数字本身是“粗体”),那么您可以使用 SpannableString:

像这样:

String TemperatureMeasurementStr = String.valueOf(measurement.getTemperature()) + "\u2103";
SpannableString tempSpan= new SpannableString(TemperatureMeasurementStr);
if (TemperatureMeasurement.length() >0){

//the symbol will be smaller then the number
tempSpan.setSpan(new RelativeSizeSpan(0.7f),TemperatureMeasurementStr.length() - 1, TemperatureMeasurementStr.length(), 0);

//the number style will be bold and the symbol normal
tempSpan.setSpan(new android.text.style.StyleSpan(Typeface.BOLD), 0, TemperatureMeasurementStr.length()-1, 0);

//the symbol color will be yellow
tempSpan.setSpan(new ForegroundColorSpan(Color.YELLOW), TemperatureMeasurementStr.length() - 1, TemperatureMeasurementStr.length(), 0);
}
temperatureTV.setText(tempSpan);

最后,如果您只想在 Windows 的任何编辑器(包括 android studio)中输入度数符号“°”,只需使用:

                                    Alt+0176  

                                    Alt+248 

关于android - 在 TextView 中显示度数符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36699987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com