gpt4 book ai didi

android - 循环约束和 "missing constraints"错误

转载 作者:行者123 更新时间:2023-12-01 19:19:41 27 4
gpt4 key购买 nike

我正在尝试由ConstraintLayout提供的圆形定位。在下面的示例应用程序中,我有一个位于屏幕中心的 TextView 和一个以 50dp 半径循环约束到 TextViewImageView s 和45 度s 的角度。它应该受到完全约束,因为不再有以 app:layout_constraintCircle 开头的 XML 属性,因此我假设我已经完全声明了其预期位置。但是,Android Studio 在 ImageView 上向我发出以下警告:

This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints

运行应用程序证明我是对的,因为受约束的 View 位于正确的位置并且不会跳转到布局的开头。

所以我的问题是:我是否缺少任何额外的约束,或者 Android Studio 是否因某种原因无法识别循环约束有效?

XML 布局示例:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/hello_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/ic_launcher_background"
app:layout_constraintCircle="@id/hello_text"
app:layout_constraintCircleAngle="45"
app:layout_constraintCircleRadius="50dp"/>

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

我自己尝试过这个,我只能说这是 android studio lint 的错误。

由于定义了角度和半径,ImageView 相对于 TextView 的位置是固定的。

现在您可以通过添加来抑制 lint 错误

tools:ignore="MissingConstraints"

到ImageView。

最好在 issue tracker 中报告此情况,下

Android Public Tracker > App Development > Android Studio > Lint
<小时/>

实际上,我在使用 Parcelize 时也遇到了类似的情况(lint 错误),报告 here .

关于android - 循环约束和 "missing constraints"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57660157/

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