如何确定要添加到android.widget.Space的Android Gradle依赖项的库和版本

时间:2019-07-04 22:25:39

标签: android android-studio android-gradle widget gradle-dependencies

例如,我想尝试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上似乎没有任何指针,至少可以消除一些其他事情的猜测。

0 个答案:

没有答案