android - layout_widthPercent加载dependencies后还是不能使用,是什么原因?

 兄弟465748208_279 发布于 2022-10-28 06:43

为什么添加依赖后,还是不能使用layout_widthPercent/layout_heightPercent?
依赖:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:percent:24.2.1'
    compile 'com.android.support:appcompat-v7:24.2.1'
    testCompile 'junit:junit:4.12'
}

使用layout_widthPercent



    

告警:

 No resource identifier found for attribute 'layout_widthPercent' in package 'android'

1 个回答
  • 谢邀. 没有使用过 android.support.percent.PercentFrameLayout , 但是从 package 名字就大概知道它是support提供的, 非原生环境中所支持的Layout. 所以xml代码应该如下:

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.percent.PercentFrameLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:appCompat="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <Button
            android:id="@+id/button1"
            android:text="Button1"
            android:layout_gravity="left|top"
            appCompat:layout_widthPercent="50%"
            appCompat:layout_heightPercent="50%"/>
    </android.support.percent.PercentFrameLayout>
    

    注意 appCompat 的定义和引用.
    最后说一点, 但凡在代码里或者layout-xml能引用的Layout(or View), 都是可以正常使用的. 如果报错, 那就是用法用错了.

    p.s. 如果答错, 请直接踩这个回答吧(因为我没具体使用过该PercentFrameLayout).

    2022-11-12 01:42 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有