No resource found that matches the given name (at 'xxx' with value '@id/xxx')解决方式

问题描述

error: Error: No resource found that matches the given name (at ‘layout_constraintRight_toLeftOf’ with value ‘@id/total_time_tv’).

提示是资源的ID无法引用

解决方式

将声明@+id/view_id的控件

放置在引用他的控件之前

例如:


<TextView
     android:id="@+id/tv_id"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content" />
 
 <TextView
     app:layout_constraintTop_toBottomOf="@id/tv_id"
     android:id="@+id/tv_id"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content" />

你可能感兴趣的:(Android,android)