作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我尝试使用 PercentRelativeLayout
在 View 上实现 16:9 的宽高比.
所以我将这一行放在我的 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>
问题:
'layout_height' should be defined
for the ImageView
。错误:(15) 找不到属性“layout_aspectRatio”的资源标识符
。怎么了?
最佳答案
有了正确的依赖你仍然有警告
'layout_height' should be defined
我使用 android:layout_height="0dp"或 android:layout_width="0dp"来避免它。
<View
android:layout_height="0dp"
android:layout_width="0dp"
app:layout_aspectRatio="75%"
app:layout_widthPercent="100%"
/>
你甚至可以使用 android:layout_height="wrap_content"以防内容比 layout_aspectRatio 大
关于android - 如何在 PercentRelativeLayout 中使用 layout_aspectRatio?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33415492/
我尝试使用 PercentRelativeLayout 在 View 上实现 16:9 的宽高比. 所以我将这一行放在我的 build.gradle 文件中:compile 'com.android.
我是一名优秀的程序员,十分优秀!