当前位置:   article > 正文

android 号的转义字符串,Android 常用转义字符

android:text 转义字符

1. 转义字符的显示形式

Android的转义字符通过unicode编码来表示。常用的显示形式有Hex形式和HTML形式。

常见的转义字符如下:字符

HTML

Hex

半角空格(半角符号)

\u0020

全角空格(中文符号)

\u3000

首行缩进

\u3000\u3000

&

&

\u0026

@

@

\u0040

%

&37;

\u25

在布局文件中使用转义字符,需要使用HTML形式:<?xml version="1.0" encoding="utf-8"?>

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="姓  名" />

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="电话号码" />

而在string.xml中,则需要使用Hex形式:<?xml version="1.0" encoding="utf-8"?>

姓\u3000\u3000名

电话号码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/173980
推荐阅读
相关标签
  

闽ICP备14008679号