android – 如何在PercentRelativeLayout中使用layout_aspectRatio?

前端之家收集整理的这篇文章主要介绍了android – 如何在PercentRelativeLayout中使用layout_aspectRatio?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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'
原文链接:https://www.f2er.com/android/311021.html

猜你在找的Android相关文章