android – 如何在PercentRelativeLayout中使用layout_aspectRatio?

android – 如何在PercentRelativeLayout中使用layout_aspectRatio?,第1张

概述与 PercentRelativeLayout的观点我试图达成16:9的宽高比. 所以我把这一行放在我的build.gradle文件中:compile’c​​om.android.support:design:23.0.1′ 我用这个布局: <android.support.percent.PercentRelativeLayout xmlns:android="http://schema 与 PercentRelativeLayout的观点我试图达成16:9的宽高比.

所以我把这一行放在我的build.gradle文件中:compile’c​​om.androID.support:design:23.0.1′

我用这个布局:

<androID.support.percent.PercentrelativeLayout    xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:app="http://schemas.androID.com/apk/res-auto"    androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content">    <ImageVIEw        androID:layout_wIDth="match_parent"        app:layout_aspectRatio="178%"        androID:scaleType="centerCrop"/></androID.support.percent.PercentrelativeLayout>

问题:

> AndroID Studio警告我:应该为ImageVIEw定义’layout_height’.
>当我运行我的项目我得到:错误:(15)没有找到属性“layout_aspectRatio”的资源标识符.

那怎么了?

解决方法 您似乎使用错误的依赖项来尝试包含 Percent Support Library.

正确的(和最新版本)是:

com.androID.support:percent:23.1.0

换句话说,声明的依赖应该在你的毕业文件中看起来像这样:

compile 'com.androID.support:percent:23.1.0'
总结

以上是内存溢出为你收集整理的android – 如何在PercentRelativeLayout中使用layout_aspectRatio?全部内容,希望文章能够帮你解决android – 如何在PercentRelativeLayout中使用layout_aspectRatio?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131635.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存