作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在学习谷歌示例。在其中一个源代码中,我看到了这段代码:
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:targetApi="o"
tools:ignore="RtlSymmetry">
...
</layout>
什么工具:ignore="RtlSymmetry 有什么作用?
最佳答案
That means ignore the message about RtlSymmetry.
Android 4.1 (Jelly Bean) 在 TextView 和 EditText 元素中引入了对双向文本的有限支持,允许应用以从左到右 (LTR) 和从右到左 (RTL) 脚本显示和编辑文本。 Android 4.2 添加了对 RTL 布局的完整原生支持,包括布局镜像,让您可以为所有用户提供同样出色的应用体验,无论他们的语言是使用从右到左阅读还是从左到左阅读的脚本对。
关于android - 什么是工具 :ignore ="RtlSymmetry" in android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62828185/
我一直在学习谷歌示例。在其中一个源代码中,我看到了这段代码: ... 什么工具:ignore="RtlSymmetry 有什么作用? 最佳答案 That means ignore the mess
我是一名优秀的程序员,十分优秀!