例如,我想尝试android.widget.Space。像这样将其包含在我的布局中之后
<Space
app:layout_constraintTop_toBottomOf="@id/theoneabove"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorPrimaryDark"/>
我得到了错误
Didn't find class "android.support.v7.widget.Space"
如何确定我的gradle依赖项中应包含的库和API版本以外的哪个版本?
文档页面或these pages上似乎没有任何指针,至少可以消除一些其他事情的猜测。