作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试弄清楚如何使用约束布局实现以下行为:
(即 - 在中心放置一个正方形)
我尝试使用这个组合:
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintDimensionRatio="2:1"
但我不确定如何从这里继续
最佳答案
您无需指南即可轻松完成。
只需使用app:layout_constraintWidth_percent="0.5"
它适用于 ConstraintLayout:1.1.0-beta5 及更高版本。
<android.support.constraint.ConstraintLayout
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="match_parent">
<ImageView
android:id="@+id/img_icon"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/dark_red"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.5" />
</android.support.constraint.ConstraintLayout>
关于android - ConstraintLayout - 与自身成比例的宽度/高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49639231/
以下问题:我有一个包含很多 div 的滚动页面。每个 div 都有一个 bg-image 和另一个带有文本的 div。 blabla anothe
在 CSS 中是否可以按比例设置一个属性到另一个属性?我知道我可以用 java-script 做到这一点,但如果用 CSS 可以做到这一点,我会很高兴。 例如:width:10 % height; 如
我正在尝试设置一个看起来像这样的约束(红色父 View 中的 subview 白色): 我将如何在界面生成器中执行此操作(最好),如果不可能则编写代码,但我应该将什么作为宽度来让 IB 满意? 我试过
我试图将 View 元素放置在 UIImageView 中,然后对 UIImageView 的宽度进行动画处理以填充 super View 。我正在使用自动布局约束来定位 View 并为其设置动画。在
我是一名优秀的程序员,十分优秀!