如何修复此>属性应用程序:constraintBottom_toBottomOf未找到
2022-09-02 11:55:10
安卓新手在这里。
我正在构建和AR应用程序,现在我计划添加一个用户界面。我正在尝试添加约束布局,但是我得到错误,即找不到此约束app:layout_constraintBottom_toBottomOf="parent"
这些是我的代码和错误消息:
我在activity_ux.xml文件中添加的所有代码行都以“app”开头,例如 似乎不起作用,我只是在这里向您展示了一个示例,其中一个只是为了使其更易于调试。app:layout_constraintBottom_toTopOf
我尝试在线搜索,其中一个解决方案是我应该在我的SDK工具中安装“ConstraintLayout for Android”和“Solver for ConstraintLayout”,但我已经安装了这个。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.google.ar.sceneform.Overlei.Overlei">
<fragment android:name="com.google.ar.sceneform.ux.ArFragment"
android:id="@+id/ux_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/gallery_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
>
</LinearLayout>
</FrameLayout>
我期望这只是工作,我不知道如果内置函数(例如这个)不起作用,我可以从哪里开始寻找。