gpt4 book ai didi

android - 如何在 PercentRelativeLayout 中使用 layout_aspectRatio?

转载 作者:可可西里 更新时间:2023-11-01 19:10:36 26 4
gpt4 key购买 nike

我尝试使用 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>

问题:

  • Android Studio 警告我:'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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com