我尝试使用PercentRelativeLayout
.
所以我把这一行放在我的 build.gradle 文件中:compile 'com.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 警告我:
'layout_height' should be defined
对于ImageView
. - 当我运行我的项目时,我得到了:
Error:(15) No resource identifier found for attribute 'layout_aspectRatio'
。
那么怎么了?