gpt4 book ai didi

android - 从右到左布局支持导致 xml 编辑器中出现警告 lints

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:20:52 26 4
gpt4 key购买 nike

最近我更新了新的 ADT 插件。从那时起,每当我使用

之类的任何标签创建 xml 布局时
android:layout_toRightOf="  " 
android:layout_alignParentLeft="true"

基本上任何带有 left 和 right 这个词的 lint 警告都会告诉我为我使用的每个左右标签添加开始和结束标签,以支持从右到左的布局。

例如它建议我将之前的 xml 更改为

android:layout_toRightOf="  " 
android:layout_alignParentLeft="true"
android:layout_toEndOf=" "
android:layout_alignParentStart="true"

有人遇到同样的问题吗?有没有办法让 eclipse xml 编辑器在我在布局内移动 View 时自动添加这些标签,或者只是完全禁用这些 lints 或功能?我尝试在 list 中声明

android:supportsRtl="false"

为了禁用该功能,但该行需要 api 17+,而我的应用程序支持 api 9+。

有没有人有解决办法?

最佳答案

如果您在 AndroidManifest.xml 文件中声明 android:targetSdkVersion 的值为 17 或更高,那么您还需要声明 android:layout_toEndOfandroid:layout_toStartOf 支持从右到左显示。

但是,如果您的 android:targetSdkVersion16 或更低,您可以忽略 Lint 警告,因为它不会影响应用程序的开发或部署。

关于android - 从右到左布局支持导致 xml 编辑器中出现警告 lints,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25664899/

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